Bug 1773770: Part 5 - Migrate necko category entries to static registration. r=necko...
[gecko.git] / gfx / qcms / Cargo.toml
blob4940d8129f8094007c062d671ee884422690b079
1 [package]
2 name = "qcms"
3 authors = ["Jeff Muizelaar", "Benoit Girard", "Andrew Osmond"]
4 version = "0.2.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 rustc_version = "0.4"