Files
Pumpkin/pumpkin-protocol/Cargo.toml
Snowiiii b23b7421cf Revert "CChunkData optimizations (#193)"
This reverts commit a1b97730bd.

Due to Errors
```
thread 'tokio-runtime-worker' panicked at pumpkin-protocol/src/client/play/c_chunk_data.rs:84:25:
index out of bounds: the len is 4096 but the index is 25374
```
2024-10-27 12:29:53 +01:00

30 lines
603 B
TOML

[package]
name = "pumpkin-protocol"
version.workspace = true
edition.workspace = true
[dependencies]
pumpkin-config = { path = "../pumpkin-config" }
pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-core = { path = "../pumpkin-core" }
uuid.workspace = true
serde.workspace = true
thiserror.workspace = true
itertools.workspace = true
log.workspace = true
num-traits.workspace = true
num-derive.workspace = true
bytes = "1.8"
flate2 = "1.0"
# encryption
aes = "0.8.4"
cfb8 = "0.8.1"
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }