diff options
| author | mat <git@matdoes.dev> | 2026-01-11 23:01:30 -1030 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-01-11 23:01:30 -1030 |
| commit | 736edae2ad243f6eb3e7b01ca9b6266745cdeb24 (patch) | |
| tree | 3d1ae581c5a1addca1ac48febb59a29de0fb180b /azalea-protocol/fuzz/Cargo.toml | |
| parent | 1accbac964168af5fa0d87cb170389f0a9d01363 (diff) | |
| download | azalea-drasl-736edae2ad243f6eb3e7b01ca9b6266745cdeb24.tar.xz | |
add fuzzer for azalea-protocol and fix a few panics
Diffstat (limited to 'azalea-protocol/fuzz/Cargo.toml')
| -rw-r--r-- | azalea-protocol/fuzz/Cargo.toml | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/azalea-protocol/fuzz/Cargo.toml b/azalea-protocol/fuzz/Cargo.toml new file mode 100644 index 00000000..37e4e606 --- /dev/null +++ b/azalea-protocol/fuzz/Cargo.toml @@ -0,0 +1,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 |
