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