You've already forked ctap-types
mirror of
https://github.com/trussed-dev/ctap-types.git
synced 2026-06-20 04:16:17 -07:00
34 lines
484 B
TOML
34 lines
484 B
TOML
[package]
|
|
name = "ctap-types-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
iso7816 = "0.2.0"
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.ctap-types]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "ctap1"
|
|
path = "fuzz_targets/ctap1.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "ctap2"
|
|
path = "fuzz_targets/ctap2.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|