| [package] |
| name = "crypto_provider_test-fuzz" |
| version = "0.0.0" |
| publish = false |
| edition = "2021" |
| license = "Apache-2.0" |
| |
| [package.metadata] |
| cargo-fuzz = true |
| |
| [dependencies] |
| crypto_provider.workspace = true |
| crypto_provider_default = { workspace = true, default-features = false } |
| derive_fuzztest.workspace = true |
| |
| [target.'cfg(fuzzing)'.dependencies] |
| libfuzzer-sys.workspace = true |
| |
| [lints.rust] |
| unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } |
| |
| [features] |
| default = ["crypto_provider_default/default"] |
| boringssl = ["crypto_provider_default/boringssl"] |
| |
| [[bin]] |
| name = "fuzz_p256" |
| path = "src/bin/fuzz_p256.rs" |
| doc = false |