diff options
| author | mat <git@matdoes.dev> | 2024-11-27 10:26:40 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-11-27 10:26:40 +0000 |
| commit | 0817382098128adcecb77756a3c7cd1bd0066057 (patch) | |
| tree | 623d9b297f9b5fdb2af74ab3c5a4fa5c1b72ff5b /azalea-world | |
| parent | dfdc3144b61b6750ad62fb493b7c00c6c820c90b (diff) | |
| download | azalea-drasl-0817382098128adcecb77756a3c7cd1bd0066057.tar.xz | |
replace once_cell with std:;sync::LazyLock
Diffstat (limited to 'azalea-world')
| -rw-r--r-- | azalea-world/Cargo.toml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index c69bff4c..c7b4680b 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -11,20 +11,18 @@ version = "0.10.3+mc1.21.1" [dependencies] azalea-block = { path = "../azalea-block", default-features = false, version = "0.10.0" } azalea-buf = { path = "../azalea-buf", version = "0.10.0" } -azalea-core = { path = "../azalea-core", version = "0.10.0", features = ["bevy_ecs"] } +azalea-core = { path = "../azalea-core", version = "0.10.0", features = [ + "bevy_ecs", +] } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } bevy_ecs = { workspace = true } derive_more = { workspace = true, features = ["deref", "deref_mut"] } nohash-hasher = { workspace = true } -#once_cell = { workspace = true } parking_lot = { workspace = true } rustc-hash = { workspace = true } -#serde = { workspace = true } -#serde_json = { workspace = true } simdnbt = { workspace = true } thiserror = { workspace = true } tracing = { workspace = true } -#uuid = { workspace = true } [dev-dependencies] azalea-client = { path = "../azalea-client" } |
