mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
66 lines
1.1 KiB
TOML
66 lines
1.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"pumpkin-api-macros",
|
|
"pumpkin-config",
|
|
"pumpkin-util",
|
|
"pumpkin-inventory",
|
|
"pumpkin-macros/",
|
|
"pumpkin-protocol/",
|
|
"pumpkin-registry/",
|
|
"pumpkin-world",
|
|
"pumpkin/",
|
|
"pumpkin-data",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0-dev+1.21.7"
|
|
edition = "2024"
|
|
|
|
|
|
[profile.dev]
|
|
#opt-level = 0
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
|
|
[workspace.dependencies]
|
|
log = "0.4"
|
|
tokio = { version = "1.46", features = [
|
|
"macros",
|
|
"net",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
"io-std",
|
|
"signal",
|
|
"fs",
|
|
"io-util",
|
|
] }
|
|
|
|
thiserror = "2.0"
|
|
|
|
bytes = "1.10"
|
|
|
|
# Concurrency/Parallelism and Synchronization
|
|
futures = "0.3"
|
|
rayon = "1.10"
|
|
crossbeam = "0.8"
|
|
|
|
uuid = { version = "1.17", features = ["serde", "v3", "v4"] }
|
|
derive_more = { version = "2.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
async-trait = "0.1"
|
|
|
|
tempfile = "3.20.0"
|
|
proc-macro-error2 = "2"
|