mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
Remove all unwraps when handling packets. Also improve split Packets into Client & Server bound removing ugly match statement where we are reading Clientboud Packets (which is impossible).
31 lines
577 B
TOML
31 lines
577 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" }
|
|
|
|
bytes = "1.7"
|
|
|
|
uuid.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
flate2 = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
log.workspace = true
|
|
num-traits = "0.2"
|
|
num-derive = "0.4"
|
|
|
|
# encryption
|
|
aes = "0.8.4"
|
|
cfb8 = "0.8.1"
|
|
|
|
itertools.workspace = true
|
|
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
|