diff options
| author | mat <git@matdoes.dev> | 2023-12-01 23:09:24 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-12-01 23:09:24 -0600 |
| commit | 3eb9998c989cbf9305f4584af94daae72780fea7 (patch) | |
| tree | 842c34eccc15913c3b4a1a61e3803a21aa5ded4e /azalea-protocol/Cargo.toml | |
| parent | 175eacfac37cbe05911fa2d19dee7e7fa38a5c2e (diff) | |
| download | azalea-drasl-3eb9998c989cbf9305f4584af94daae72780fea7.tar.xz | |
compression does not need to be async
Diffstat (limited to 'azalea-protocol/Cargo.toml')
| -rw-r--r-- | azalea-protocol/Cargo.toml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 81a3dde1..e4543011 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -9,10 +9,6 @@ version = "0.8.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-compression = { version = "^0.4.5", features = [ - "tokio", - "zlib", -], optional = true } async-recursion = "1.0.5" azalea-auth = { path = "../azalea-auth", version = "0.8.0" } azalea-block = { path = "../azalea-block", default-features = false, version = "0.8.0" } @@ -52,7 +48,7 @@ uuid = "1.5.0" [features] connecting = [] default = ["packets"] -packets = ["connecting", "dep:async-compression", "dep:azalea-core"] +packets = ["connecting", "dep:azalea-core"] strict_registry = ["packets"] [dev-dependencies] |
