aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/fuzz/Cargo.toml
blob: 37e4e60642300cccbf575e5f5a53361fa3f09b70 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "azalea-fuzz"
version = "0.0.0"
publish = false
edition = "2024"

[package.metadata]
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"
azalea-protocol = { path = "..", default-features = false }

[[bin]]
name = "clientbound_config"
path = "fuzz_targets/clientbound_config.rs"
test = false
doc = false
bench = false
[[bin]]
name = "clientbound_game"
path = "fuzz_targets/clientbound_game.rs"
test = false
doc = false
bench = false
[[bin]]
name = "clientbound_handshake"
path = "fuzz_targets/clientbound_handshake.rs"
test = false
doc = false
bench = false
[[bin]]
name = "clientbound_login"
path = "fuzz_targets/clientbound_login.rs"
test = false
doc = false
bench = false
[[bin]]
name = "clientbound_status"
path = "fuzz_targets/clientbound_status.rs"
test = false
doc = false
bench = false


[[bin]]
name = "serverbound_config"
path = "fuzz_targets/serverbound_config.rs"
test = false
doc = false
bench = false
[[bin]]
name = "serverbound_game"
path = "fuzz_targets/serverbound_game.rs"
test = false
doc = false
bench = false
[[bin]]
name = "serverbound_handshake"
path = "fuzz_targets/serverbound_handshake.rs"
test = false
doc = false
bench = false
[[bin]]
name = "serverbound_login"
path = "fuzz_targets/serverbound_login.rs"
test = false
doc = false
bench = false
[[bin]]
name = "serverbound_status"
path = "fuzz_targets/serverbound_status.rs"
test = false
doc = false
bench = false