* maximum working bumpalo version * explicit comment to explain version locking * removes incorrect comment * moves serde version lock to dev dependencies * removes serde dependencies * reverts serde removal in crypto library
75 lines
1.7 KiB
TOML
75 lines
1.7 KiB
TOML
[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" }
|
|
fuzz_helper = { path = "fuzz_helper" }
|
|
# We import to explicitly lock the version.
|
|
# Remove this dependency once CTAP is a library.
|
|
bumpalo = "=3.8.0"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap_command"
|
|
path = "fuzz_targets/fuzz_target_process_ctap_command.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap1"
|
|
path = "fuzz_targets/fuzz_target_process_ctap1.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_client_pin"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_client_pin.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_client_pin_structured"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_client_pin_structured.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_get_assertion"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_get_assertion.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_get_assertion_structured"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_get_assertion_structured.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_make_credential"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_make_credential.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_process_ctap2_make_credential_structured"
|
|
path = "fuzz_targets/fuzz_target_process_ctap2_make_credential_structured.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_split_assemble"
|
|
path = "fuzz_targets/fuzz_target_split_assemble.rs"
|
|
test = false
|
|
doc = false
|