rgb 0.8.14

`struct RGB/RGBA/etc.` for sharing pixels between crates + convenience methods for color manipulation. Allows no-copy high-level interoperability. Also adds common convenience methods and implements standard Rust traits to make `RGB`/`RGBA` pixels and slices first-class Rust objects.
Documentation
[package]
name = "rgb"
version = "0.8.14"
authors = ["Kornel LesiƄski <kornel@geekhood.net>"]
include = ["src/**/*", "Cargo.toml", "README.md", "examples/*.rs"]
description = "`struct RGB/RGBA/etc.` for sharing pixels between crates + convenience methods for color manipulation.\nAllows no-copy high-level interoperability. Also adds common convenience methods and implements standard Rust traits to make `RGB`/`RGBA` pixels and slices first-class Rust objects."
documentation = "https://docs.rs/rgb"
repository = "https://github.com/kornelski/rust-rgb"
homepage = "https://lib.rs/crates/rgb"
readme = "README.md"
keywords = ["rgb", "rgba", "bgra", "pixel", "color"]
license = "MIT"
categories = ["rust-patterns", "multimedia::images"]
edition = "2018"

[badges]
travis-ci = { repository = "kornelski/rust-rgb" }

[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }

[dev-dependencies]
serde_json = "1.0"

[[example]]
name = "serde"
required-features = ["serde"]

[[example]]
name = "example"