tor-browser

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

Cargo.toml (481B)


      1 [package]
      2 name = "to_shmem_derive"
      3 version = "0.1.0"
      4 authors = ["The Servo Project Developers"]
      5 license = "MPL-2.0"
      6 repository = "https://github.com/servo/stylo"
      7 edition = "2021"
      8 description = "Allows deriving the to_shmem trait."
      9 
     10 [lib]
     11 path = "lib.rs"
     12 proc-macro = true
     13 
     14 [dependencies]
     15 darling = { version = "0.20", default-features = false }
     16 proc-macro2 = "1"
     17 quote = "1"
     18 syn = { version = "2", default-features = false, features = ["derive", "parsing"] }
     19 synstructure = "0.13"