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