• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "crypto_provider_test-fuzz"
3version = "0.0.0"
4publish = false
5edition = "2021"
6
7[package.metadata]
8cargo-fuzz = true
9
10[dependencies]
11crypto_provider.workspace = true
12crypto_provider_default = { workspace = true, default-features = false }
13derive_fuzztest.workspace = true
14
15[target.'cfg(fuzzing)'.dependencies]
16libfuzzer-sys.workspace = true
17
18[features]
19default = ["crypto_provider_default/default"]
20boringssl = ["crypto_provider_default/boringssl"]
21
22[[bin]]
23name = "fuzz_p256"
24path = "src/bin/fuzz_p256.rs"
25doc = false
26