diff options
| author | mat <git@matdoes.dev> | 2024-12-25 06:16:10 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-12-25 06:16:10 +0000 |
| commit | 04eaa5c3d01a8f3a599a3a1abf7205eed80df4a2 (patch) | |
| tree | e37b34e8bf03045778f383f4e324414e2047ca92 /azalea-protocol/Cargo.toml | |
| parent | 0ee9ed50e30222784d094e20302cadc879f2b6db (diff) | |
| download | azalea-drasl-04eaa5c3d01a8f3a599a3a1abf7205eed80df4a2.tar.xz | |
remove dependency on bytes crate for azalea-protocol and fix memory leak
Diffstat (limited to 'azalea-protocol/Cargo.toml')
| -rw-r--r-- | azalea-protocol/Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 3d5d2ec1..202bd08a 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -33,12 +33,11 @@ azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.11.0" azalea-registry = { path = "../azalea-registry", version = "0.11.0" } azalea-world = { path = "../azalea-world", version = "0.11.0" } bevy_ecs = { workspace = true } -#byteorder = { workspace = true } -bytes = { workspace = true } +# byteorder = { workspace = true } flate2 = { workspace = true } futures = { workspace = true } futures-lite = { workspace = true } -#futures-util = { workspace = true } +# futures-util = { workspace = true } serde = { workspace = true, features = ["serde_derive"] } serde_json = { workspace = true } simdnbt = { workspace = true } |
