mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-07-31 04:02:00 -07:00
26 lines
412 B
TOML
26 lines
412 B
TOML
[package]
|
|
name = "fuzz"
|
|
version = "0.0.1"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
globset = { path = "../crates/globset", features = ["arbitrary"] }
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "fuzz_glob"
|
|
path = "fuzz_targets/fuzz_glob.rs"
|
|
test = false
|
|
doc = false
|