Added first fuzzing target
This commit is contained in:
31
fuzz/Cargo.toml
Normal file
31
fuzz/Cargo.toml
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
[package]
|
||||
name = "ctap2-fuzz"
|
||||
version = "0.0.0"
|
||||
authors = ["Automatically generated"]
|
||||
publish = false
|
||||
edition = "2018"
|
||||
|
||||
[package.metadata]
|
||||
cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
libfuzzer-sys = { version = "0.3"}
|
||||
arrayref = "0.3.6"
|
||||
libtock_drivers = { path = "../third_party/libtock-drivers" }
|
||||
crypto = { path = "../libraries/crypto", features = ['std'] }
|
||||
cbor = { path = "../libraries/cbor"}
|
||||
|
||||
[dependencies.ctap2]
|
||||
path = ".."
|
||||
features = ['std', 'ram_storage', 'fuzzing']
|
||||
|
||||
# Prevent this from interfering with workspaces
|
||||
[workspace]
|
||||
members = ["."]
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_target_split_assemble"
|
||||
path = "fuzz_targets/fuzz_target_split_assemble.rs"
|
||||
test = false
|
||||
doc = false
|
||||
Reference in New Issue
Block a user