0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin synced 2025-01-30 07:51:38 +00:00
Pumpkin/pumpkin-world/Cargo.toml
Kyle Davis 6c4eb88dd3 Adds support for Block properties (#485)
* Something

* Double slabs working

* Revert changes to blocks.json

* Fixed merge and clippy issues

* Fixed Bad merge for play.rs

* fix slabs and adds stairs

* Fix issue with fmt

---------

Co-authored-by: Bafran <aachinoy@gmail.com>
Co-authored-by: Alexander Medvedev <lilalexmed@proton.me>
2025-01-28 11:15:55 +01:00

55 lines
985 B
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.2"
dashmap = "6.1.0"
num-traits = "0.2"
# Compression
flate2 = "1.0"
lz4 = "1.28.1"
file-guard = "0.2.0"
indexmap = "2.7.1"
enum_dispatch = "0.3.13"
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
noise = "0.9.0"
rand = "0.8.5"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "chunk_noise"
harness = false
[[bench]]
name = "chunk_noise_populate"
harness = false