0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin synced 2025-04-23 23:35:47 +00:00
Files
Alexander Medvedev fbd95cb693 Read and Write light data using Anvil
Now we are reading and writing light data to and from the anvil format and send it in the chunk and light packet
2025-04-10 19:09:27 +02:00

40 lines
821 B
TOML

[package]
name = "pumpkin-protocol"
version.workspace = true
edition.workspace = true
[features]
default = ["packets", "query"]
packets = ["serverbound", "clientbound"]
serverbound = []
clientbound = []
query = []
[dependencies]
pumpkin-nbt = { path = "../pumpkin-nbt" }
pumpkin-data = { path = "../pumpkin-data" }
pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-util = { path = "../pumpkin-util" }
uuid.workspace = true
serde.workspace = true
thiserror.workspace = true
log.workspace = true
tokio.workspace = true
bytes.workspace = true
# encryption
aes = "0.8"
cfb8 = "0.8"
# compression
async-compression = { version = "0.4.22", features = ["tokio", "zlib"] }
take_mut = "0.2.2"
bitflags = "2.9.0"
[dev-dependencies]
# Validate correctness
flate2 = "1.1.1"