mirror of
https://github.com/trussed-dev/iso7816.git
synced 2026-06-20 04:16:14 -07:00
38 lines
600 B
TOML
38 lines
600 B
TOML
[package]
|
|
name = "iso7816-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
arbitrary = { version = "1.3.0", features = ["derive"] }
|
|
libfuzzer-sys = "0.4"
|
|
|
|
|
|
[dependencies.iso7816]
|
|
path = ".."
|
|
features = ["std"]
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_1"
|
|
path = "fuzz_targets/fuzz_target_1.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_2"
|
|
path = "fuzz_targets/fuzz_target_2.rs"
|
|
test = false
|
|
doc = false
|