mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +00:00
33 lines
831 B
TOML
33 lines
831 B
TOML
[package]
|
|
name = "azalea-world"
|
|
description = "The Minecraft world representation used in Azalea."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dev-dependencies]
|
|
azalea-client.workspace = true
|
|
criterion.workspace = true
|
|
|
|
[dependencies]
|
|
azalea-block.workspace = true
|
|
azalea-buf.workspace = true
|
|
azalea-core = { workspace = true, features = ["bevy_ecs"] }
|
|
azalea-registry.workspace = true
|
|
bevy_ecs.workspace = true
|
|
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
|
|
nohash-hasher.workspace = true
|
|
parking_lot.workspace = true
|
|
rustc-hash.workspace = true
|
|
serde = { workspace = true, optional = true }
|
|
simdnbt.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[features]
|
|
serde = ["dep:serde"]
|
|
|
|
[[bench]]
|
|
name = "chunks"
|
|
harness = false
|