-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
54 lines (44 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "rsonpath-lib-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.3.*", features = ["derive"] }
libfuzzer-sys = { version = "0.4" }
serde = "1.0.213"
serde_json = "1.0.132"
[dependencies.rsonpath-lib]
path = "../crates/rsonpath-lib"
features = ["arbitrary"]
[dependencies.rsonpath-syntax]
path = "../crates/rsonpath-syntax"
features = ["arbitrary"]
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = 1
lto = false
[[bin]]
name = "fuzz_arbitrary_bytes"
path = "fuzz_targets/fuzz_arbitrary_bytes.rs"
test = false
doc = false
[[bin]]
name = "query_fuzz_arbitrary_bytes"
path = "fuzz_targets/query_fuzz_arbitrary_bytes.rs"
test = false
doc = false
[[bin]]
name = "query_fuzz_round_trip"
path = "fuzz_targets/query_fuzz_round_trip.rs"
test = false
doc = false
[[bin]]
name = "fuzz_arbitrary_json"
path = "fuzz_targets/fuzz_arbitrary_json.rs"
test = false
doc = false