36 lines
690 B
TOML
36 lines
690 B
TOML
[package]
|
|
name = "xts-aes-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.xts_aes]
|
|
path = ".."
|
|
|
|
[dependencies.crypto_provider]
|
|
path = "../../../crypto/crypto_provider"
|
|
|
|
[dependencies.crypto_provider_rustcrypto]
|
|
path = "../../../crypto/crypto_provider_rustcrypto"
|
|
|
|
[dependencies.ldt_tbc]
|
|
path = "../../../presence/ldt_tbc"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "xts-roundtrip"
|
|
path = "fuzz_targets/xts_roundtrip.rs"
|
|
test = false
|
|
doc = false
|