aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-02-02 21:17:28 +0000
committermat <git@matdoes.dev>2025-02-02 21:17:28 +0000
commit8d110a9f7c568fd52fc6c213d707206287311319 (patch)
tree6dfed16120460fd726a09a779c5a1387cfa0baf1
parentb08d3d55d7351eff6e27a09d732078c038539958 (diff)
downloadazalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz
cleanup, fix warnings
-rw-r--r--azalea-auth/Cargo.toml22
-rw-r--r--azalea-block/Cargo.toml8
-rw-r--r--azalea-block/azalea-block-macros/Cargo.toml14
-rw-r--r--azalea-brigadier/Cargo.toml14
-rw-r--r--azalea-buf/Cargo.toml18
-rw-r--r--azalea-buf/azalea-buf-macros/Cargo.toml12
-rw-r--r--azalea-chat/Cargo.toml12
-rw-r--r--azalea-client/Cargo.toml34
-rw-r--r--azalea-core/Cargo.toml18
-rw-r--r--azalea-crypto/Cargo.toml24
-rw-r--r--azalea-entity/Cargo.toml28
-rw-r--r--azalea-entity/src/enchantments.rs2
-rw-r--r--azalea-entity/src/mining.rs4
-rw-r--r--azalea-inventory/Cargo.toml14
-rw-r--r--azalea-inventory/azalea-inventory-macros/Cargo.toml14
-rw-r--r--azalea-language/Cargo.toml12
-rw-r--r--azalea-physics/Cargo.toml20
-rw-r--r--azalea-protocol/Cargo.toml38
-rw-r--r--azalea-protocol/azalea-protocol-macros/Cargo.toml14
-rw-r--r--azalea-registry/Cargo.toml10
-rw-r--r--azalea-registry/azalea-registry-macros/Cargo.toml14
-rw-r--r--azalea-world/Cargo.toml22
-rw-r--r--azalea/Cargo.toml48
23 files changed, 208 insertions, 208 deletions
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index 01e1952f..c8760d1f 100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -1,26 +1,26 @@
[package]
name = "azalea-auth"
description = "A port of Mojang's Authlib and launcher authentication."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
azalea-crypto = { path = "../azalea-crypto", version = "0.11.0" }
-base64 = { workspace = true }
+base64.workspace = true
chrono = { workspace = true, features = ["serde"] }
-md-5 = { workspace = true }
+md-5.workspace = true
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
-rsa = { workspace = true }
+rsa.workspace = true
serde = { workspace = true, features = ["derive"] }
-serde_json = { workspace = true }
-thiserror = { workspace = true }
+serde_json.workspace = true
+thiserror.workspace = true
tokio = { workspace = true, features = ["fs"] }
-tracing = { workspace = true }
+tracing.workspace = true
uuid = { workspace = true, features = ["serde", "v3"] }
[dev-dependencies]
-env_logger = { workspace = true }
+env_logger.workspace = true
tokio = { workspace = true, features = ["full"] }
diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml
index 7593492d..7961901c 100644
--- a/azalea-block/Cargo.toml
+++ b/azalea-block/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-block"
description = "Representation of Minecraft block states."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-block-macros = { path = "./azalea-block-macros", version = "0.11.0" }
diff --git a/azalea-block/azalea-block-macros/Cargo.toml b/azalea-block/azalea-block-macros/Cargo.toml
index 20a87020..bf268eb6 100644
--- a/azalea-block/azalea-block-macros/Cargo.toml
+++ b/azalea-block/azalea-block-macros/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "azalea-block-macros"
description = "Proc macros used by azalea-block."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-proc-macro2 = { workspace = true }
-quote = { workspace = true }
-syn = { workspace = true }
+proc-macro2.workspace = true
+quote.workspace = true
+syn.workspace = true
diff --git a/azalea-brigadier/Cargo.toml b/azalea-brigadier/Cargo.toml
index f7ce3ad2..bae31992 100644
--- a/azalea-brigadier/Cargo.toml
+++ b/azalea-brigadier/Cargo.toml
@@ -1,19 +1,19 @@
[package]
name = "azalea-brigadier"
description = "A port of Mojang's Brigadier command parsing and dispatching library."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dev-dependencies]
-bevy_app = { workspace = true }
-bevy_ecs = { workspace = true }
+bevy_app.workspace = true
+bevy_ecs.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0", optional = true }
azalea-chat = { path = "../azalea-chat", version = "0.11.0", optional = true }
-parking_lot = { workspace = true }
+parking_lot.workspace = true
[features]
azalea-buf = ["dep:azalea-buf", "dep:azalea-chat", "azalea-chat/azalea-buf"]
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 300d08a5..d8a36044 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -1,19 +1,19 @@
[package]
name = "azalea-buf"
description = "Serialize and deserialize buffers from Minecraft."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.11.0" }
-byteorder = { workspace = true }
+byteorder.workspace = true
serde_json = { workspace = true, optional = true }
-simdnbt = { workspace = true }
-thiserror = { workspace = true }
-tracing = { workspace = true }
-uuid = { workspace = true }
+simdnbt.workspace = true
+thiserror.workspace = true
+tracing.workspace = true
+uuid.workspace = true
[features]
serde_json = ["dep:serde_json"]
diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml
index 0400e77e..2ed935c4 100644
--- a/azalea-buf/azalea-buf-macros/Cargo.toml
+++ b/azalea-buf/azalea-buf-macros/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "azalea-buf-macros"
description = "#[derive(AzBuf)]"
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-proc-macro2 = { workspace = true }
-quote = { workspace = true }
+proc-macro2.workspace = true
+quote.workspace = true
syn = { workspace = true, features = ["extra-traits"] }
diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml
index 8c789702..04505295 100644
--- a/azalea-chat/Cargo.toml
+++ b/azalea-chat/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-chat"
description = "Parse Minecraft chat messages."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[features]
default = []
@@ -19,6 +19,6 @@ azalea-buf = { path = "../azalea-buf", version = "0.11.0", optional = true, feat
azalea-language = { path = "../azalea-language", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0", optional = true }
serde = { workspace = true, features = ["derive"] }
-serde_json = { workspace = true }
+serde_json.workspace = true
simdnbt = { workspace = true, optional = true }
-tracing = { workspace = true }
+tracing.workspace = true
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 36337713..ea146970 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-client"
description = "A headless Minecraft client."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-auth = { path = "../azalea-auth", version = "0.11.0" }
@@ -19,24 +19,24 @@ azalea-physics = { path = "../azalea-physics", version = "0.11.0" }
azalea-protocol = { path = "../azalea-protocol", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
azalea-world = { path = "../azalea-world", version = "0.11.0" }
-bevy_app = { workspace = true }
-bevy_ecs = { workspace = true }
+bevy_app.workspace = true
+bevy_ecs.workspace = true
bevy_log = { workspace = true, optional = true }
-bevy_tasks = { workspace = true }
-bevy_time = { workspace = true }
+bevy_tasks.workspace = true
+bevy_time.workspace = true
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
-minecraft_folder_path = { workspace = true }
-parking_lot = { workspace = true }
-regex = { workspace = true }
-reqwest = { workspace = true }
-simdnbt = { workspace = true }
-thiserror = { workspace = true }
+minecraft_folder_path.workspace = true
+parking_lot.workspace = true
+regex.workspace = true
+reqwest.workspace = true
+simdnbt.workspace = true
+thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
-tracing = { workspace = true }
-uuid = { workspace = true }
+tracing.workspace = true
+uuid.workspace = true
[dev-dependencies]
-anyhow = { workspace = true }
+anyhow.workspace = true
[features]
default = ["log"]
diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml
index c976264b..85eef1f4 100644
--- a/azalea-core/Cargo.toml
+++ b/azalea-core/Cargo.toml
@@ -1,22 +1,22 @@
[package]
name = "azalea-core"
description = "Miscellaneous things in Azalea."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
bevy_ecs = { workspace = true, optional = true }
-nohash-hasher = { workspace = true }
-num-traits = { workspace = true }
+nohash-hasher.workspace = true
+num-traits.workspace = true
serde = { workspace = true, optional = true }
-simdnbt = { workspace = true }
-tracing = { workspace = true }
+simdnbt.workspace = true
+tracing.workspace = true
azalea-chat = { path = "../azalea-chat", version = "0.11.0" }
-indexmap = { workspace = true }
+indexmap.workspace = true
[features]
bevy_ecs = ["dep:bevy_ecs"]
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml
index 488e2f1d..924ec99c 100644
--- a/azalea-crypto/Cargo.toml
+++ b/azalea-crypto/Cargo.toml
@@ -1,25 +1,25 @@
[package]
name = "azalea-crypto"
description = "Cryptography features used in Minecraft."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dev-dependencies]
-criterion = { workspace = true }
+criterion.workspace = true
[dependencies]
-aes = { workspace = true }
+aes.workspace = true
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
-cfb8 = { workspace = true }
-num-bigint = { workspace = true }
+cfb8.workspace = true
+num-bigint.workspace = true
rand = { workspace = true, features = ["getrandom"] }
rsa = { workspace = true, features = ["sha2"] }
-rsa_public_encrypt_pkcs1 = { workspace = true }
-sha-1 = { workspace = true }
-sha2 = { workspace = true }
-uuid = { workspace = true }
+rsa_public_encrypt_pkcs1.workspace = true
+sha-1.workspace = true
+sha2.workspace = true
+uuid.workspace = true
[[bench]]
harness = false
diff --git a/azalea-entity/Cargo.toml b/azalea-entity/Cargo.toml
index 0427f2df..3c5e12d6 100644
--- a/azalea-entity/Cargo.toml
+++ b/azalea-entity/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-entity"
description = "Things related to Minecraft entities used by Azalea"
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-block = { path = "../azalea-block", version = "0.11.0" }
@@ -16,13 +16,13 @@ azalea-core = { path = "../azalea-core", version = "0.11.0" }
azalea-inventory = { path = "../azalea-inventory", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
azalea-world = { path = "../azalea-world", version = "0.11.0" }
-bevy_app = { workspace = true }
-bevy_ecs = { workspace = true }
-derive_more = { workspace = true }
-enum-as-inner = { workspace = true }
-nohash-hasher = { workspace = true }
-parking_lot = { workspace = true }
-simdnbt = { workspace = true }
-thiserror = { workspace = true }
-tracing = { workspace = true }
-uuid = { workspace = true }
+bevy_app.workspace = true
+bevy_ecs.workspace = true
+derive_more.workspace = true
+enum-as-inner.workspace = true
+nohash-hasher.workspace = true
+parking_lot.workspace = true
+simdnbt.workspace = true
+thiserror.workspace = true
+tracing.workspace = true
+uuid.workspace = true
diff --git a/azalea-entity/src/enchantments.rs b/azalea-entity/src/enchantments.rs
index fd238bf2..d51cf752 100644
--- a/azalea-entity/src/enchantments.rs
+++ b/azalea-entity/src/enchantments.rs
@@ -1,4 +1,4 @@
-pub fn get_enchant_level(
+pub fn _get_enchant_level(
_enchantment: azalea_registry::Enchantment,
_player_inventory: &azalea_inventory::Menu,
) -> u32 {
diff --git a/azalea-entity/src/mining.rs b/azalea-entity/src/mining.rs
index e118032d..b17cddf0 100644
--- a/azalea-entity/src/mining.rs
+++ b/azalea-entity/src/mining.rs
@@ -76,8 +76,8 @@ fn has_correct_tool_for_drops(block: &dyn Block, tool: registry::Item) -> bool {
fn destroy_speed(
block: registry::Block,
tool: registry::Item,
- player_inventory: &azalea_inventory::Menu,
- fluid_on_eyes: &FluidOnEyes,
+ _player_inventory: &azalea_inventory::Menu,
+ _fluid_on_eyes: &FluidOnEyes,
physics: &Physics,
) -> f32 {
let mut base_destroy_speed = base_destroy_speed(block, tool);
diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml
index 9ccaaa2d..4d4830db 100644
--- a/azalea-inventory/Cargo.toml
+++ b/azalea-inventory/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-inventory"
description = "Representations of various inventory data structures in Minecraft."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
@@ -14,7 +14,7 @@ azalea-chat = { path = "../azalea-chat", version = "0.11.0", features = [
azalea-core = { path = "../azalea-core", version = "0.11.0" }
azalea-inventory-macros = { path = "./azalea-inventory-macros", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
-indexmap = { workspace = true }
+indexmap.workspace = true
-simdnbt = { workspace = true }
-uuid = { workspace = true }
+simdnbt.workspace = true
+uuid.workspace = true
diff --git a/azalea-inventory/azalea-inventory-macros/Cargo.toml b/azalea-inventory/azalea-inventory-macros/Cargo.toml
index 5e850b3c..97d61dd8 100644
--- a/azalea-inventory/azalea-inventory-macros/Cargo.toml
+++ b/azalea-inventory/azalea-inventory-macros/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "azalea-inventory-macros"
description = "Internal macros for azalea-inventory."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-proc-macro2 = { workspace = true }
-quote = { workspace = true }
-syn = { workspace = true }
+proc-macro2.workspace = true
+quote.workspace = true
+syn.workspace = true
diff --git a/azalea-language/Cargo.toml b/azalea-language/Cargo.toml
index 53167dc7..c19a2689 100644
--- a/azalea-language/Cargo.toml
+++ b/azalea-language/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "azalea-language"
description = "Translate Minecraft strings from their id."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
-serde = { workspace = true }
-serde_json = { workspace = true }
+serde.workspace = true
+serde_json.workspace = true
diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml
index 60d80787..c75b8d17 100644
--- a/azalea-physics/Cargo.toml
+++ b/azalea-physics/Cargo.toml
@@ -1,14 +1,14 @@
[package]
name = "azalea-physics"
description = "Physics for Minecraft entities."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dev-dependencies]
-bevy_time = { workspace = true }
-uuid = { workspace = true }
+bevy_time.workspace = true
+uuid.workspace = true
[dependencies]
azalea-block = { path = "../azalea-block", version = "0.11.0" }
@@ -17,7 +17,7 @@ azalea-entity = { version = "0.11.0", path = "../azalea-entity" }
azalea-inventory = { version = "0.11.0", path = "../azalea-inventory" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
azalea-world = { path = "../azalea-world", version = "0.11.0" }
-bevy_app = { workspace = true }
-bevy_ecs = { workspace = true }
-tracing = { workspace = true }
-parking_lot = { workspace = true }
+bevy_app.workspace = true
+bevy_ecs.workspace = true
+tracing.workspace = true
+parking_lot.workspace = true
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 202bd08a..e81beea6 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -1,18 +1,18 @@
[package]
name = "azalea-protocol"
description = "Send and receive Minecraft packets."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dev-dependencies]
-anyhow = { workspace = true }
-tracing = { workspace = true }
-tracing-subscriber = { workspace = true }
+anyhow.workspace = true
+tracing.workspace = true
+tracing-subscriber.workspace = true
[dependencies]
-async-recursion = { workspace = true }
+async-recursion.workspace = true
azalea-auth = { path = "../azalea-auth", version = "0.11.0" }
azalea-block = { path = "../azalea-block", version = "0.11.0", default-features = false }
azalea-brigadier = { path = "../azalea-brigadier", version = "0.11.0", features = [
@@ -32,22 +32,22 @@ azalea-inventory = { path = "../azalea-inventory", version = "0.11.0" }
azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.11.0" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
azalea-world = { path = "../azalea-world", version = "0.11.0" }
-bevy_ecs = { workspace = true }
-# byteorder = { workspace = true }
-flate2 = { workspace = true }
-futures = { workspace = true }
-futures-lite = { workspace = true }
-# futures-util = { workspace = true }
+bevy_ecs.workspace = true
+# byteorder.workspace = true
+flate2.workspace = true
+futures.workspace = true
+futures-lite.workspace = true
+# futures-util.workspace = true
serde = { workspace = true, features = ["serde_derive"] }
-serde_json = { workspace = true }
-simdnbt = { workspace = true }
+serde_json.workspace = true
+simdnbt.workspace = true
socks5-impl = { workspace = true, features = ["client"] }
-thiserror = { workspace = true }
+thiserror.workspace = true
tokio = { workspace = true, features = ["io-util", "net", "macros"] }
tokio-util = { workspace = true, features = ["codec"] }
-tracing = { workspace = true }
+tracing.workspace = true
hickory-resolver = { workspace = true, features = ["tokio-runtime"] }
-uuid = { workspace = true }
+uuid.workspace = true
[features]
connecting = []
diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml
index 5f54fc37..100c4817 100644
--- a/azalea-protocol/azalea-protocol-macros/Cargo.toml
+++ b/azalea-protocol/azalea-protocol-macros/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "azalea-protocol-macros"
description = "Macros internally used in azalea-protocol."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-proc-macro2 = { workspace = true }
-quote = { workspace = true }
-syn = { workspace = true }
+proc-macro2.workspace = true
+quote.workspace = true
+syn.workspace = true
diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml
index b1fe4930..940c61b5 100644
--- a/azalea-registry/Cargo.toml
+++ b/azalea-registry/Cargo.toml
@@ -1,16 +1,16 @@
[package]
name = "azalea-registry"
description = "Use Minecraft's registries."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
azalea-registry-macros = { path = "./azalea-registry-macros", version = "0.11.0" }
serde = { workspace = true, optional = true, features = ["derive"] }
-simdnbt = { workspace = true }
+simdnbt.workspace = true
[features]
serde = ["azalea-registry-macros/serde", "dep:serde"]
diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml
index 409ca831..a7d3ca0e 100644
--- a/azalea-registry/azalea-registry-macros/Cargo.toml
+++ b/azalea-registry/azalea-registry-macros/Cargo.toml
@@ -1,18 +1,18 @@
[package]
name = "azalea-registry-macros"
description = "Macros internally used in azalea-registry."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[lib]
proc-macro = true
[dependencies]
-#proc-macro2 = { workspace = true }
-quote = { workspace = true }
-syn = { workspace = true }
+#proc-macro2.workspace = true
+quote.workspace = true
+syn.workspace = true
[features]
serde = []
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index e35fb6c4..2ce3d097 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea-world"
description = "The Minecraft world representation used in Azalea."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dev-dependencies]
azalea-client = { path = "../azalea-client" }
@@ -17,14 +17,14 @@ azalea-core = { path = "../azalea-core", version = "0.11.0", features = [
"bevy_ecs",
] }
azalea-registry = { path = "../azalea-registry", version = "0.11.0" }
-bevy_ecs = { 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 }
-simdnbt = { workspace = true }
-thiserror = { workspace = true }
-tracing = { workspace = true }
+nohash-hasher.workspace = true
+parking_lot.workspace = true
+rustc-hash.workspace = true
+simdnbt.workspace = true
+thiserror.workspace = true
+tracing.workspace = true
[[bench]]
name = "chunks"
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 495c1930..94fe2612 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "azalea"
description = "A framework for creating Minecraft bots."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[package.metadata.release]
pre-release-replacements = [
@@ -12,7 +12,7 @@ pre-release-replacements = [
]
[dependencies]
-#async-trait = { workspace = true }
+#async-trait.workspace = true
azalea-auth = { version = "0.11.0", path = "../azalea-auth" }
azalea-block = { version = "0.11.0", path = "../azalea-block" }
azalea-brigadier = { version = "0.11.0", path = "../azalea-brigadier" }
@@ -26,31 +26,31 @@ azalea-physics = { version = "0.11.0", path = "../azalea-physics" }
azalea-protocol = { version = "0.11.0", path = "../azalea-protocol" }
azalea-registry = { version = "0.11.0", path = "../azalea-registry" }
azalea-world = { version = "0.11.0", path = "../azalea-world" }
-bevy_app = { workspace = true }
-bevy_ecs = { workspace = true }
-bevy_log = { workspace = true }
+bevy_app.workspace = true
+bevy_ecs.workspace = true
+bevy_log.workspace = true
bevy_tasks = { workspace = true, features = ["multi_threaded"] }
-# bevy_time = { workspace = true }
+# bevy_time.workspace = true
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
-futures = { workspace = true }
-futures-lite = { workspace = true }
-indexmap = { workspace = true }
-nohash-hasher = { workspace = true }
-num-format = { workspace = true }
-num-traits = { workspace = true }
-parking_lot = { workspace = true }
-rustc-hash = { workspace = true }
+futures.workspace = true
+futures-lite.workspace = true
+indexmap.workspace = true
+nohash-hasher.workspace = true
+num-format.workspace = true
+num-traits.workspace = true
+parking_lot.workspace = true
+rustc-hash.workspace = true
serde = { workspace = true, optional = true }
-thiserror = { workspace = true }
-tokio = { workspace = true }
-tracing = { workspace = true }
-uuid = { workspace = true }
+thiserror.workspace = true
+tokio.workspace = true
+tracing.workspace = true
+uuid.workspace = true
[dev-dependencies]
-criterion = { workspace = true }
+criterion.workspace = true
parking_lot = { workspace = true, features = ["deadlock_detection"] }
-rand = { workspace = true }
-anyhow = { workspace = true }
+rand.workspace = true
+anyhow.workspace = true
[features]
default = ["log", "serde"]