0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin synced 2025-02-22 08:06:10 +00:00
Pumpkin/pumpkin/Cargo.toml
2025-02-20 18:42:20 +01:00

90 lines
1.9 KiB
TOML

[package]
name = "pumpkin"
version = "0.1.0-dev"
description = "Empowering everyone to host fast and efficient Minecraft servers."
edition.workspace = true
rust-version = "1.85"
[package.metadata.tauri-winres]
# FileDescription is handled as the Program name by Windows!
FileDescription = "Pumpkin"
OriginalFilename = "pumpkin.exe"
LegalCopyright = "Copyright © 2025 Aleksander Medvedev"
# Required to expose pumpkin plugin API
[lib]
doctest = false
[dependencies]
# pumpkin
pumpkin-util = { path = "../pumpkin-util" }
pumpkin-nbt = { path = "../pumpkin-nbt" }
pumpkin-config = { path = "../pumpkin-config" }
pumpkin-inventory = { path = "../pumpkin-inventory" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-data = { path = "../pumpkin-data" }
pumpkin-protocol = { path = "../pumpkin-protocol" }
pumpkin-registry = { path = "../pumpkin-registry" }
pumpkin-macros = { path = "../pumpkin-macros" }
log.workspace = true
crossbeam.workspace = true
uuid.workspace = true
tokio.workspace = true
rayon.workspace = true
thiserror.workspace = true
async-trait.workspace = true
# config
serde.workspace = true
serde_json.workspace = true
bytes.workspace = true
rand = "0.8"
num-bigint = "0.4"
# Console line reading
rustyline-async = "0.4.5"
# encryption
rsa = "0.9"
rsa-der = "0.3"
# authentication
reqwest = { version = "0.12", default-features = false, features = [
"http2",
"json",
"macos-system-configuration",
"rustls-tls",
] }
sha1 = "0.10"
# velocity en
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
# icon loading
png = "0.17"
# logging
simplelog = { version = "0.12.2", features = ["ansi_term"] }
# Remove time in favor of chrono?
time = "0.3"
chrono = { version = "0.4", features = ["serde"] }
# plugins
libloading = "0.8"
[build-dependencies]
git-version = "0.3"
# This makes it so the entire project doesn't recompile on each build on linux.
[target.'cfg(target_os = "windows")'.build-dependencies]
tauri-winres = "0.3"