mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
We will focus on other things by now. And extism just slows down compile and indexing times extremly
70 lines
1.3 KiB
TOML
70 lines
1.3 KiB
TOML
[package]
|
|
name = "pumpkin"
|
|
version = "0.1.0-dev"
|
|
description = "Empowering everyone to host fast and efficient Minecraft servers."
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# pumpkin
|
|
pumpkin-core = { path = "../pumpkin-core" }
|
|
pumpkin-config = { path = "../pumpkin-config" }
|
|
pumpkin-inventory = { path = "../pumpkin-inventory" }
|
|
pumpkin-world = { path = "../pumpkin-world" }
|
|
pumpkin-entity = { path = "../pumpkin-entity" }
|
|
pumpkin-protocol = { path = "../pumpkin-protocol" }
|
|
pumpkin-registry = { path = "../pumpkin-registry" }
|
|
|
|
itertools.workspace = true
|
|
|
|
# config
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
|
|
bytes = "1.7"
|
|
|
|
rand = "0.8.5"
|
|
|
|
num-traits = "0.2"
|
|
num-derive = "0.4"
|
|
num-bigint = "0.4"
|
|
|
|
ctrlc = "3.4"
|
|
|
|
# encryption
|
|
rsa = "0.9.6"
|
|
rsa-der = "0.3.0"
|
|
|
|
# authentication
|
|
reqwest = { version = "0.12.7", default-features = false, features = [
|
|
"http2",
|
|
"json",
|
|
"macos-system-configuration",
|
|
"rustls-tls",
|
|
] }
|
|
|
|
sha1 = "0.10.6"
|
|
digest = "=0.11.0-pre.9"
|
|
|
|
# velocity en
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.8"
|
|
|
|
thiserror = "1.0"
|
|
|
|
# icon loading
|
|
base64 = "0.22.1"
|
|
png = "0.17.14"
|
|
|
|
# logging
|
|
simple_logger = { version = "5.0.0", features = ["threads"] }
|
|
log.workspace = true
|
|
|
|
# networking
|
|
mio = { version = "1.0.2", features = ["net", "os-poll"] }
|
|
|
|
parking_lot.workspace = true
|
|
crossbeam.workspace = true
|
|
uuid.workspace = true
|
|
tokio.workspace = true
|
|
rayon.workspace = true
|