blob: 890d7b5bd540f5eca5a1be32953ddc9f78b30679 [file] [log] [blame]
[package]
name = "ukey2_connections-fuzz"
version.workspace = true
publish.workspace = true
license.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
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(fuzzing)',
'cfg(rust_analyzer)',
] }
[[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