aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
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 /azalea-client
parentb08d3d55d7351eff6e27a09d732078c038539958 (diff)
downloadazalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz
cleanup, fix warnings
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/Cargo.toml34
1 files changed, 17 insertions, 17 deletions
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"]