mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 20:32:34 +00:00
51 lines
966 B
TOML
51 lines
966 B
TOML
[package]
|
|
name = "pumpkin"
|
|
version = "0.1.0-dev"
|
|
description = "Empowering everyone to host fast and efficient Minecraft servers."
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
pumpkin-world = { path = "../pumpkin-world"}
|
|
pumpkin-protocol = { path = "../pumpkin-protocol"}
|
|
pumpkin-registry = { path = "../pumpkin-registry"}
|
|
|
|
# config
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8.19"
|
|
|
|
rand = "0.8.5"
|
|
|
|
num-bigint = "0.4.6"
|
|
|
|
# encryption
|
|
rsa = "0.9.6"
|
|
rsa-der = "0.3.0"
|
|
|
|
flate2 = "1.0.30"
|
|
|
|
# authentication
|
|
reqwest = { version = "0.12.5", features = ["json", "blocking"]}
|
|
|
|
sha1 = "0.10.6"
|
|
digest = "=0.11.0-pre.9"
|
|
|
|
thiserror = "1.0.63"
|
|
|
|
# icon loading
|
|
base64 = "0.22.1"
|
|
image = { version = "0.25", default-features = false, features = ["png"]}
|
|
|
|
# logging
|
|
simple_logger = "5.0.0"
|
|
log = "0.4"
|
|
|
|
# networking
|
|
mio = { version = "1.0.1", features = ["os-poll", "net"]}
|
|
crossbeam-channel = "0.5.13"
|
|
|
|
uuid = { version = "1.10", features = ["serde"]}
|
|
|
|
|
|
|