mirror of
https://github.com/NLnetLabs/routinator.git
synced 2024-05-19 06:50:04 +00:00
37 lines
660 B
TOML
37 lines
660 B
TOML
![]() |
[package]
|
||
|
name = "routinator-fuzz"
|
||
|
version = "0.0.0"
|
||
|
publish = false
|
||
|
edition = "2021"
|
||
|
|
||
|
[package.metadata]
|
||
|
cargo-fuzz = true
|
||
|
|
||
|
[dependencies]
|
||
|
libfuzzer-sys = "0.4"
|
||
|
rpki = { git = "https://github.com/NLnetLabs/rpki-rs.git", features = [ "repository", "rrdp", "rtr", "serde", "slurm" ] }
|
||
|
|
||
|
[dependencies.routinator]
|
||
|
path = ".."
|
||
|
features = ["arbitrary"]
|
||
|
|
||
|
# Prevent this from interfering with workspaces
|
||
|
[workspace]
|
||
|
members = ["."]
|
||
|
|
||
|
[profile.release]
|
||
|
debug = 1
|
||
|
|
||
|
[[bin]]
|
||
|
name = "construct_delta"
|
||
|
path = "fuzz_targets/construct_delta.rs"
|
||
|
test = false
|
||
|
doc = false
|
||
|
|
||
|
|
||
|
[[bin]]
|
||
|
name = "merge_deltas"
|
||
|
path = "fuzz_targets/merge_deltas.rs"
|
||
|
test = false
|
||
|
doc = false
|