tor-browser

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

Cargo.toml (482B)


      1 [package]
      2 name = "goblin"
      3 version = "0.8.999"
      4 edition = "2018"
      5 license = "MIT OR Apache-2.0"
      6 
      7 [lib]
      8 path = "lib.rs"
      9 
     10 [dependencies.goblin]
     11 version = "0.9.0"
     12 
     13 default-features = false
     14 
     15 [features]
     16 alloc = ["goblin/alloc"]
     17 archive = ["goblin/archive"]
     18 default = ["goblin/default"]
     19 elf32 = ["goblin/elf32"]
     20 elf64 = ["goblin/elf64"]
     21 endian_fd = ["goblin/endian_fd"]
     22 mach32 = ["goblin/mach32"]
     23 mach64 = ["goblin/mach64"]
     24 pe32 = ["goblin/pe32"]
     25 pe64 = ["goblin/pe64"]
     26 std = ["goblin/std"]