Merge mozilla-central to autoland. CLOSED TREE
[gecko.git] / gfx / qcms / Cargo.toml
blobc6e0e76722952ed06cd738526a9041b6edd978e6
1 [package]
2 name = "qcms"
3 authors = ["Jeff Muizelaar", "Benoit Girard", "Andrew Osmond"]
4 version = "0.3.0"
5 edition = "2018"
6 include = ["src/**/*", "build.rs"]
7 description = "lightweight color management"
8 documentation = "https://docs.rs/qcms"
9 license = "MIT"
10 repository = "https://github.com/FirefoxGraphics/qcms"
11 keywords = ["color"]
12 categories = ["graphics"]
14 [features]
15 default = ["iccv4-enabled", "cmyk"]
16 c_bindings = ["libc"]
17 neon = []
18 iccv4-enabled = []
19 cmyk = []
21 [dependencies]
22 libc = {version = "0.2", optional = true }
24 [build-dependencies]
25 version_check = "0.9"