aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
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 /Cargo.toml
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 'Cargo.toml')
-rw-r--r--Cargo.toml88
1 files changed, 72 insertions, 16 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9ce1fc84..217d8ac7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,24 +1,80 @@
[workspace]
members = [
- "azalea",
- "azalea-client",
- "azalea-protocol",
- "azalea-chat",
- "azalea-core",
- "azalea-auth",
- "azalea-brigadier",
- "azalea-crypto",
- "azalea-world",
- "azalea-language",
- "azalea-block",
- "azalea-buf",
- "azalea-physics",
- "azalea-registry",
- "azalea-inventory",
- "azalea-entity",
+ "azalea",
+ "azalea-client",
+ "azalea-protocol",
+ "azalea-chat",
+ "azalea-core",
+ "azalea-auth",
+ "azalea-brigadier",
+ "azalea-crypto",
+ "azalea-world",
+ "azalea-language",
+ "azalea-block",
+ "azalea-buf",
+ "azalea-physics",
+ "azalea-registry",
+ "azalea-inventory",
+ "azalea-entity",
]
resolver = "2"
+[workspace.dependencies]
+aes = "0.8.4"
+anyhow = "1.0.93"
+async-recursion = "1.1.1"
+async-trait = "0.1.83"
+base64 = "0.22.1"
+bevy_app = "0.13.2"
+bevy_ecs = { version = "0.13.2", default-features = false }
+bevy_log = "0.13.2"
+bevy_tasks = "0.13.2"
+bevy_time = "0.13.2"
+byteorder = "1.5.0"
+bytes = "1.8.0"
+cfb8 = "0.8.1"
+chrono = { version = "0.4.38", default-features = false }
+criterion = "0.5.1"
+derive_more = "1.0.0"
+enum-as-inner = "0.6.1"
+env_logger = "0.11.5"
+flate2 = "1.0.35"
+futures = "0.3.31"
+futures-lite = "2.5.0"
+#futures-util = "0.3.31"
+log = "0.4.22"
+md-5 = "0.10.6"
+minecraft_folder_path = "0.1.2"
+nohash-hasher = "0.2.0"
+num-bigint = "0.4.6"
+num-traits = "0.2.19"
+once_cell = "1.20.2"
+parking_lot = "0.12.3"
+priority-queue = "2.1.1"
+proc-macro2 = "1.0.92"
+quote = "1.0.37"
+rand = "0.8.5"
+regex = "1.11.1"
+reqwest = { version = "0.12.9", default-features = false }
+rsa = "0.9.6"
+rsa_public_encrypt_pkcs1 = "0.4.0"
+rustc-hash = "2.0.0"
+serde = "1.0.215"
+serde_json = "1.0.133"
+sha-1 = "0.10.1"
+sha2 = "0.10.8"
+simdnbt = "0.6"
+#smallvec = "1.13.2"
+socks5-impl = "0.5.17"
+syn = "2.0.89"
+thiserror = "2.0.3"
+tokio = "1.41.1"
+tokio-util = "0.7.12"
+tracing = "0.1.40"
+tracing-subscriber = "0.3.18"
+trust-dns-resolver = { version = "0.23.2", default-features = false }
+uuid = "1.11.0"
+
[profile.release]
debug = true