-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
61 lines (50 loc) · 1.29 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
55
56
57
58
59
60
61
[workspace]
# Excludes this from containing workspace; see top-level Cargo.toml for explanation
[package]
name = "all-is-cubes-fuzz"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
# Note: Cannot use workspace dependencies here!
all-is-cubes = { path = "../all-is-cubes", features = ["arbitrary"] }
all-is-cubes-gpu = { path = "../all-is-cubes-gpu" }
all-is-cubes-mesh = { path = "../all-is-cubes-mesh", features = ["arbitrary"] }
arbitrary = { version = "1.4.1", features = ["derive"] }
libfuzzer-sys = "0.4"
pretty_assertions = { version = "1.2.0" }
[patch.crates-io]
# Here are some patches we might want to apply for development:
#
# exhaust = { git = "https://github.com/kpreid/exhaust/", branch = "main" }
[[bin]]
name = "fuzz_block_eval"
path = "fuzz_targets/fuzz_block_eval.rs"
test = false
doc = false
[[bin]]
name = "fuzz_octree"
path = "fuzz_targets/fuzz_octree.rs"
test = false
doc = false
[[bin]]
name = "fuzz_mesh"
path = "fuzz_targets/fuzz_mesh.rs"
test = false
doc = false
[[bin]]
name = "fuzz_physics"
path = "fuzz_targets/fuzz_physics.rs"
test = false
doc = false
[[bin]]
name = "fuzz_raycast"
path = "fuzz_targets/fuzz_raycast.rs"
test = false
doc = false
[[bin]]
name = "fuzz_universe"
path = "fuzz_targets/fuzz_universe.rs"
test = false
doc = false