mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
- replace anyhow with thiserror - implement own error types - Security: Begin to haarding Server, Prevent Crashes when Fail to receive/send Client Packet
36 lines
566 B
TOML
36 lines
566 B
TOML
[package]
|
|
name = "pumpkin"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
rand = "0.8.5"
|
|
|
|
rsa = "0.9.6"
|
|
rsa-der = "0.3.0"
|
|
|
|
aes = "0.8.4"
|
|
cfb8 = "0.8.1"
|
|
flate2 = "1.0.30"
|
|
bytes = "1.7"
|
|
|
|
thiserror = "1.0.63"
|
|
|
|
base64 = "0.22.1"
|
|
image = { version = "0.25", default-features = false, features = ["png"]}
|
|
|
|
simple_logger = "5.0.0"
|
|
log = "0.4"
|
|
mio = { version = "1.0.1", features = ["os-poll", "net"]}
|
|
crossbeam-channel = "0.5.13"
|
|
uuid = "1.10"
|
|
toml = "0.8.17"
|
|
fastnbt = "2.5.0"
|
|
fastsnbt = "0.2"
|
|
|
|
|