mirror of https://github.com/rwf2/Rocket.git
54 lines
936 B
TOML
54 lines
936 B
TOML
[package]
|
|
name = "rocket-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(honggfuzz)', 'cfg(afl)'] }
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
arbitrary = { version = "1.3", features = ["derive"] }
|
|
|
|
[target.'cfg(afl)'.dependencies]
|
|
afl = "*"
|
|
|
|
[target.'cfg(honggfuzz)'.dependencies]
|
|
honggfuzz = "*"
|
|
|
|
[dependencies.rocket]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "uri-parsing"
|
|
path = "targets/uri-parsing.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "uri-roundtrip"
|
|
path = "targets/uri-roundtrip.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "uri-normalization"
|
|
path = "targets/uri-normalization.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "collision-matching"
|
|
path = "targets/collision-matching.rs"
|
|
test = false
|
|
doc = false
|