aboutsummaryrefslogtreecommitdiff
path: root/azalea-core
diff options
context:
space:
mode:
authorShayne Hartford <shaybox@shaybox.com>2024-11-23 03:29:30 -0500
committerGitHub <noreply@github.com>2024-11-23 02:29:30 -0600
commitdfdc3144b61b6750ad62fb493b7c00c6c820c90b (patch)
tree0cca5bcea62b3562152944b278c494401531d4d7 /azalea-core
parente443c5d76e706132ab554e97513d2b159f4ab0a1 (diff)
downloadazalea-drasl-dfdc3144b61b6750ad62fb493b7c00c6c820c90b.tar.xz
Update and merge the dependencies (#187)
* Add rust rover to .gitignore * Fold dependency feature lists * Sort dependencies alphabetically * Update dependencies * Upgrade dependencies * Comment out unused dependencies * Nightly is broken right now :) * Fix conflict with derive_more * cargo autoinherit to merge dependencies * Fix clippy lints
Diffstat (limited to 'azalea-core')
-rw-r--r--azalea-core/Cargo.toml16
1 files changed, 8 insertions, 8 deletions
diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml
index 00781373..bc65399f 100644
--- a/azalea-core/Cargo.toml
+++ b/azalea-core/Cargo.toml
@@ -9,16 +9,16 @@ version = "0.10.3+mc1.21.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-simdnbt = "0.6"
azalea-buf = { path = "../azalea-buf", version = "0.10.0" }
azalea-registry = { path = "../azalea-registry", version = "0.10.0" }
-bevy_ecs = { version = "0.13.0", default-features = false, optional = true }
-nohash-hasher = "0.2.0"
-num-traits = "0.2.19"
-serde = { version = "^1.0", optional = true }
-uuid = "^1.9.1"
-serde_json = "^1.0.120"
-tracing = "0.1.40"
+bevy_ecs = { workspace = true, optional = true }
+nohash-hasher = { workspace = true }
+num-traits = { workspace = true }
+serde = { workspace = true, optional = true }
+#serde_json = { workspace = true }
+simdnbt = { workspace = true }
+tracing = { workspace = true }
+#uuid = { workspace = true }
[features]
bevy_ecs = ["dep:bevy_ecs"]