mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
* Fewer locks and limit chunk gen to 2x per core * remove logs * Fix server shutdown * Always use static blockstate * Remove clone from block * Fix clippy * Imporve perf * Implement FyorDev & MartV0 lookup tables * Add chunk benchmark (FyorDev) * fix c * Fix CI * fix clippy * Format * fix CI fr * format * Update benchmark to 1000 chunks
25 lines
471 B
TOML
25 lines
471 B
TOML
[package]
|
|
name = "pumpkin-data"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
build = "build/build.rs"
|
|
|
|
[dependencies]
|
|
phf = { version = "0.12.1", features = ["macros"] }
|
|
pumpkin-util = { path = "../pumpkin-util" }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[build-dependencies]
|
|
pumpkin-util = { path = "../pumpkin-util" }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
serde_json5 = "0.2.1"
|
|
heck = "0.5"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = "2.0"
|