1cargo-features = ['named-profiles'] 2 3[package] 4name = "regex-fuzz" 5version = "0.0.0" 6authors = ["David Korczynski <david@adalogics.com>"] 7publish = false 8edition = "2018" 9 10[package.metadata] 11cargo-fuzz = true 12 13[dependencies] 14libfuzzer-sys = "0.4.1" 15 16[dependencies.regex] 17path = ".." 18 19# Prevent this from interfering with workspaces 20[workspace] 21members = ["."] 22 23[[bin]] 24name = "fuzz_regex_match" 25path = "fuzz_targets/fuzz_regex_match.rs" 26 27[profile.release] 28opt-level = 3 29debug = true 30 31[profile.dev] 32opt-level = 3 33debug = true 34 35[profile.test] 36opt-level = 3 37debug = true 38