33 lines
597 B
TOML
33 lines
597 B
TOML
|
|
[package]
|
||
|
|
name = "ldt-fuzz"
|
||
|
|
version = "0.0.0"
|
||
|
|
authors = ["Automatically generated"]
|
||
|
|
publish = false
|
||
|
|
edition = "2018"
|
||
|
|
|
||
|
|
[package.metadata]
|
||
|
|
cargo-fuzz = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
libfuzzer-sys = "0.4"
|
||
|
|
arbitrary = { version = "1.1.7", features = ["derive"] }
|
||
|
|
|
||
|
|
[dependencies.ldt]
|
||
|
|
path = ".."
|
||
|
|
|
||
|
|
[dependencies.xts_aes]
|
||
|
|
path = "../../xts_aes"
|
||
|
|
|
||
|
|
[dependencies.crypto_provider_rustcrypto]
|
||
|
|
path = "../../../crypto/crypto_provider_rustcrypto"
|
||
|
|
|
||
|
|
# Prevent this from interfering with workspaces
|
||
|
|
[workspace]
|
||
|
|
members = ["."]
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "ldt-roundtrip"
|
||
|
|
path = "fuzz_targets/ldt_roundtrip.rs"
|
||
|
|
test = false
|
||
|
|
doc = false
|