tor-browser

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

Cargo.toml (514B)


      1 [package]
      2 name = "servo_arc"
      3 version = "0.4.0"
      4 authors = ["The Servo Project Developers"]
      5 license = "MIT OR Apache-2.0"
      6 repository = "https://github.com/servo/stylo"
      7 description = "A fork of std::sync::Arc with some extra functionality and without weak references"
      8 edition = "2021"
      9 
     10 [lib]
     11 name = "servo_arc"
     12 path = "lib.rs"
     13 
     14 [features]
     15 gecko_refcount_logging = []
     16 servo = ["serde", "track_alloc_size"]
     17 track_alloc_size = []
     18 
     19 [dependencies]
     20 serde = { version = "1.0", optional = true }
     21 stable_deref_trait = "1.0.0"