mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
54 lines
1.0 KiB
TOML
54 lines
1.0 KiB
TOML
[package]
|
|
name = "pumpkin-world"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
pumpkin-nbt = { path = "../pumpkin-nbt" }
|
|
pumpkin-util = { path = "../pumpkin-util" }
|
|
pumpkin-config = { path = "../pumpkin-config" }
|
|
pumpkin-macros = { path = "../pumpkin-macros" }
|
|
pumpkin-data = { path = "../pumpkin-data" }
|
|
|
|
bytes.workspace = true
|
|
|
|
|
|
tokio.workspace = true
|
|
rayon.workspace = true
|
|
derive_more.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
log.workspace = true
|
|
|
|
num-derive = "0.4"
|
|
|
|
dashmap = "6.1"
|
|
|
|
num-traits = "0.2"
|
|
|
|
# Compression
|
|
flate2 = "1.0"
|
|
lz4 = "1.28"
|
|
zstd = "0.13.3"
|
|
|
|
|
|
file-guard = "0.2"
|
|
indexmap = "2.7"
|
|
|
|
enum_dispatch = "0.3"
|
|
|
|
noise = "0.9"
|
|
|
|
# Had to use custom, because google's is broken, I made a PR.
|
|
serde_json5 = { git = "https://github.com/kralverde/serde_json5.git" }
|
|
|
|
derive-getters = "0.5.0"
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
temp-dir = "0.1.14"
|
|
|
|
[[bench]]
|
|
name = "chunk_noise_populate"
|
|
harness = false
|