mirror of
https://github.com/Pumpkin-MC/Pumpkin
synced 2025-04-17 06:46:00 +00:00
39 lines
802 B
TOML
39 lines
802 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.20", features = ["tokio", "zlib"] }
|
|
|
|
take_mut = "0.2.2"
|
|
|
|
[dev-dependencies]
|
|
# Validate correctness
|
|
flate2 = "1.1.0"
|