mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
32 lines
526 B
TOML
32 lines
526 B
TOML
[package]
|
|
name = "pumpkin-protocol"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
|
|
pumpkin-macros = { path = "../pumpkin-macros" }
|
|
|
|
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.30"
|
|
|
|
thiserror = "1.0.63"
|
|
log = "0.4"
|
|
num-traits = "0.2"
|
|
num-derive = "0.4"
|
|
|
|
# for text component
|
|
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
|
|
|
|
# encryption
|
|
aes = "0.8.4"
|
|
cfb8 = "0.8.1"
|
|
take_mut = "0.2.2"
|