• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "cros_fuzz"
3version = "0.1.0"
4authors = ["The ChromiumOS Authors"]
5edition = "2021"
6include = ["Cargo.toml", "src/*.rs"]
7
8[dependencies]
9rand_core = {version = "0.6", features = ["std"]}
10libfuzzer-sys = { version = "*", optional = true }
11cfg-if = "1.0"
12
13[features]
14upstream-fuzz = ["dep:libfuzzer-sys"]
15
16
17