-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
34 lines (30 loc) · 832 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "lab"
version = "0.11.0"
authors = ["Jesse Bees <[email protected]>"]
description = """
Tools for converting RGB colors to the CIE-L*a*b* color space, and
comparing differences in color.
"""
homepage = "https://github.com/TooManyBees/lab"
repository = "https://github.com/TooManyBees/lab"
documentation = "https://docs.rs/lab"
readme = "README.md"
keywords = ["lab", "color", "pixel", "rgb"]
categories = ["multimedia::images", "multimedia::video"]
license = "MIT"
include = ["src/**/*", "benches/**/*", "Cargo.toml", "README.md", "LICENSE"]
[lib]
bench = false
[dev-dependencies]
rand = "0.8"
criterion = { version = "0.3", default-features = false }
lazy_static = "1.3.0"
pretty_assertions = "0.7"
approx = "0.5"
[[bench]]
name = "rgb_to_lab"
harness = false
[[bench]]
name = "lab_to_rgb"
harness = false