tor-browser

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

Cargo.toml (446B)


      1 [package]
      2 name = "qcms-fuzz"
      3 version = "0.0.0"
      4 authors = ["Automatically generated"]
      5 publish = false
      6 edition = "2018"
      7 
      8 [package.metadata]
      9 cargo-fuzz = true
     10 
     11 [dependencies]
     12 libfuzzer-sys = "0.4"
     13 libc = "0.2"
     14 
     15 [dependencies.qcms]
     16 path = ".."
     17 features = ["c_bindings"]
     18 
     19 # Prevent this from interfering with workspaces
     20 [workspace]
     21 members = ["."]
     22 
     23 [[bin]]
     24 name = "fuzz_target_qcms"
     25 path = "fuzz_targets/fuzz_target_qcms.rs"
     26 test = false
     27 doc = false