• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "uwb_core-fuzz"
3version = "0.0.1"
4publish = false
5edition = "2021"
6
7[package.metadata]
8cargo-fuzz = true
9
10[dependencies]
11arbitrary = {version = "1", features = ["derive"] }
12libfuzzer-sys = "0.4"
13uwb_core = { path = "..", features = ["proto"] }
14
15# Prevent this from interfering with workspaces
16[workspace]
17members = ["."]
18
19[profile.release]
20debug = 1
21
22[[bin]]
23name = "proto_uwb_service_fuzzer"
24path = "proto_uwb_service_fuzzer.rs"
25test = false
26doc = false
27