Skip to content
Snippets Groups Projects
Commit d532af4d authored by Kornel's avatar Kornel
Browse files

4.2.1

parent 8015f012
No related branches found
No related tags found
Loading
[package] [package]
name = "lcms2" name = "lcms2"
authors = ["Kornel Lesiński <kornel@geekhood.net>"] authors = ["Kornel Lesiński <kornel@geekhood.net>"]
description = "ICC color profile handling. Rusty wrapper for Little CMS"
keywords = ["icc", "profile", "color", "lcms"] keywords = ["icc", "profile", "color", "lcms"]
include = ["src/**/*", "tests/**/*", "examples/**/*", "Cargo.toml", "README.md"] include = ["src/**/*", "tests/**/*", "examples/**/*", "Cargo.toml", "README.md"]
description = "ICC color profile handling. Rusty wrapper Little CMS"
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
documentation = "https://pornel.github.io/rust-lcms2/lcms2/" documentation = "https://pornel.github.io/rust-lcms2/lcms2/"
repository = "https://github.com/pornel/rust-lcms2.git" repository = "https://github.com/pornel/rust-lcms2.git"
categories = ["multimedia::images", "api-bindings"] categories = ["multimedia::images", "api-bindings"]
version = "4.2.0" version = "4.2.1"
[dependencies] [dependencies]
foreign-types = "0.3.0" foreign-types = "0.3.0"
......
# [Little CMS](http://www.littlecms.com) wrapper for [Rust](http://www.rust-lang.org/) # [Little CMS](http://www.littlecms.com) wrapper for [Rust](https://www.rust-lang.org/)
Convert and apply color profiles with a safe abstraction layer for the LCMS library. Convert and apply color profiles with a safe abstraction layer for the LCMS library.
See [API reference](https://docs.rs/lcms2/) for Rust functions and the [LCMS2 documentation HTML](https://pornel.github.io/rust-lcms2-sys/)/[PDF](http://www.littlecms.com/LittleCMS2.7%20API.pdf) for more background information about the functions. See [API reference](https://docs.rs/lcms2/) for Rust functions and the [LCMS2 documentation HTML](https://pornel.github.io/rust-lcms2-sys/)/[PDF](http://www.littlecms.com/LittleCMS2.8%20API.pdf) for more background information about the functions.
```rust ```rust
extern crate rgb; extern crate rgb;
...@@ -42,4 +42,4 @@ if b"ICC_PROFILE\0" == &app2_marker_data[0..12] { ...@@ -42,4 +42,4 @@ if b"ICC_PROFILE\0" == &app2_marker_data[0..12] {
There's more in the `examples` directory. There's more in the `examples` directory.
This crate requires Rust 1.18 or later. It's up to date with LCMS 2.8 (should work with 2.6+). This crate requires Rust 1.18 or later. It's up to date with LCMS 2.8 (should work with 2.6 to 2.9).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment