tor-browser

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

Cargo.toml (677B)


      1 [package]
      2 name = "test-trust-anchors-static"
      3 version = "0.1.0"
      4 authors = ["John Schanck <jschanck@mozilla.com>"]
      5 edition = "2021"
      6 license = "MPL-2.0"
      7 build = "../../../trust_anchors/build.rs"
      8 
      9 [features]
     10 default = ["testlib"]
     11 testlib = []
     12 
     13 [dependencies]
     14 pkcs11-bindings = "0.1.1"
     15 smallvec = { version = "1.9.0", features = ["const_new"] }
     16 mozilla-central-workspace-hack = { version = "0.1", features = ["test-trust-anchors-static"], optional = true }
     17 
     18 [build-dependencies]
     19 bindgen = { default-features = false, features = ["runtime"], version = "0.69" }
     20 mozbuild = "0.1"
     21 nom = "7.1.1"
     22 sha2 = "0.10"
     23 
     24 [lib]
     25 crate-type = ["staticlib"]
     26 path = "../../../trust_anchors/src/lib.rs"