forked from Ogeon/palette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 978 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
35
36
37
38
39
40
[package]
name = "palette"
version = "0.2.1" #automatically updated
authors = ["Erik Hedvall <hello@erikhedvall.nu>"]
exclude = ["scripts/*", "examples/*", "tests/*", "res/*", ".travis.yml", ".gitignore", "CHANGELOG.md", "version.sh"]
description = "Makes linear color calculations and conversion easy and accessible for anyone."
documentation = "https://ogeon.github.io/docs/palette/master/palette/index.html"
repository = "/~https://github.com/Ogeon/palette"
readme = "README.md"
keywords = ["color", "colour", "space", "linear"]
license = "MIT OR Apache-2.0"
build = "build/main.rs"
[features]
default = ["named_from_str"]
named_from_str = ["named", "phf", "phf_codegen"]
named = []
#internal
strict = []
[dependencies]
num = "0.1"
approx = "0.1"
[dependencies.phf]
version = "0.7"
optional = true
[dev-dependencies]
image = "0.7"
clap = "2.24.0"
csv = "0.14"
rustc-serialize = "0.3"
lazy_static = "0.1"
[build-dependencies.phf_codegen]
version = "0.7"
optional = true