matrix-fuzz

git clone git://archive.git.mtrnord.blog/MTRNord/matrix-fuzz.git
Log | Files | Refs | README | LICENSE

Cargo.toml (1044B)


      1 [package]
      2 edition = "2021"
      3 name = "matrix-fuzz"
      4 version = "0.1.0"
      5 
      6 [lib]
      7 name = "matrix_fuzz"
      8 path = "src/lib.rs"
      9 
     10 [[bin]]
     11 name = "createRoom"
     12 path = "src/fuzzTargets/createRoom.rs"
     13 
     14 [dependencies]
     15 afl = "*"
     16 arbitrary = {version = "1", features = ["derive"]}
     17 cfg-if = "1"
     18 fuzzcheck = {git = "https://github.com/MTRNord/fuzzcheck-rs.git", branch = "patch-1"}
     19 fuzzcheck_serde_json_generator = {version = "0.1.0", git = "https://github.com/teymour-aldridge/fuzzcheck_generators.git", branch = "main"}
     20 once_cell = "1.13.0"
     21 reqwest = {version = "0.11.11", features = ["blocking", "json", "gzip", "rustls-tls"], default-features = false}
     22 serde = {version = "1.0", features = ["derive"]}
     23 serde_json = "1.0.83"
     24 
     25 [patch.crates-io]
     26 fuzzcheck = {git = "https://github.com/MTRNord/fuzzcheck-rs.git", branch = "patch-1"}
     27 
     28 [patch.'https://github.com/loiclec/fuzzcheck-rs']
     29 fuzzcheck = {git = "https://github.com/MTRNord/fuzzcheck-rs.git", branch = "patch-1"}
     30 
     31 [features]
     32 default = ["fuzzing", "password_auth"]
     33 fuzzing = []
     34 password_auth = []
     35 token_auth = []