Files
Pumpkin/pumpkin-protocol/Cargo.toml
2024-08-15 15:00:41 +02:00

32 lines
615 B
TOML

[package]
name = "pumpkin-protocol"
version.workspace = true
edition.workspace = true
[dependencies]
pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-text = { path = "../pumpkin-text" }
bytes = "1.7"
uuid = "1.10"
serde = { version = "1.0", features = ["derive"] }
# to parse strings to json responses
serde_json = "1.0"
flate2 = "1.0.31"
thiserror = "1.0.63"
log = "0.4"
num-traits = "0.2"
num-derive = "0.4"
# encryption
aes = "0.8.4"
cfb8 = "0.8.1"
take_mut = "0.2.2"
itertools = "0.13.0"
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }