tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Cargo.toml (527B)


      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"]
     13 
     14 [features]
     15 default = ["iccv4-enabled", "cmyk"]
     16 c_bindings = ["libc"]
     17 neon = []
     18 iccv4-enabled = []
     19 cmyk = []
     20 
     21 [dependencies]
     22 libc = {version = "0.2", optional = true }