tor-browser

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

Cargo.toml (857B)


      1 [package]
      2 edition = "2015"
      3 name = "jsrust_shared"
      4 version = "0.1.0"
      5 authors = ["The Spidermonkey developers"]
      6 license = "MPL-2.0"
      7 
      8 [lib]
      9 crate-type = ["rlib"]
     10 name = "jsrust_shared"
     11 path = "lib.rs"
     12 
     13 [dependencies]
     14 encoding_c = "0.9.5"
     15 encoding_c_mem = "0.2.4"
     16 mozglue-static = { path = "../../../../mozglue/static/rust" }
     17 gluesmith = { path = "../../fuzz-tests/gluesmith", optional = true }
     18 icu_capi = { version = "2.0", optional = true, default-features= false, features = ["any_provider", "compiled_data", "segmenter", "calendar"] }
     19 unicode-bidi-ffi = { path = "../../../../intl/bidi/rust/unicode-bidi-ffi" }
     20 
     21 [features]
     22 simd-accel = ['encoding_c/simd-accel']
     23 icu4x = ['icu_capi']
     24 
     25 # Uncomment this to enable perf support in release mode.
     26 #[profile.release]
     27 #debug = true
     28 
     29 [package.metadata.cargo-udeps.ignore]
     30 normal = ["mozilla-central-workspace-hack"]