Cargo.toml (611B)
1 [package] 2 name = "matrix-rust-sdk-fuzz-target" 3 version = "0.1.0" 4 edition = "2018" 5 6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8 [dependencies] 9 afl = { version = "0.11", features = ["reset_lazy_static"], registry = "ktra" } 10 matrix-sdk = "0.3.0" 11 url = "2.2.2" 12 tokio = { version = "1", features = ["full"] } 13 arbitrary = { version = "1"} 14 15 [patch.crates-io] 16 lazy_static = { git = "https://github.com/rust-fuzz/resettable-lazy-static.rs" } 17 18 [[bin]] 19 name = "fuzz_get_room" 20 path = "src/get_room.rs" 21 22 [[bin]] 23 name = "fuzz_registration" 24 path = "src/register_user.rs"