[package] name = "ukey2_connections-fuzz" version.workspace = true publish.workspace = true edition.workspace = true [package.metadata] cargo-fuzz = true [dependencies] arbitrary = { workspace = true, features = ["derive"] } crypto_provider_rustcrypto.workspace = true derive_fuzztest.workspace = true rand_chacha.workspace = true ukey2_connections.workspace = true ukey2_rs.workspace = true [target.'cfg(fuzzing)'.dependencies] libfuzzer-sys.workspace = true [[bin]] name = "fuzz_connection" path = "fuzz_targets/fuzz_connection.rs" doc = false [[bin]] name = "fuzz_handshake" path = "fuzz_targets/fuzz_handshake.rs" doc = false [[bin]] name = "fuzz_from_saved_session" path = "fuzz_targets/fuzz_from_saved_session.rs" doc = false