diff options
| author | Shayne Hartford <shaybox@shaybox.com> | 2025-09-13 11:00:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-13 10:00:17 -0500 |
| commit | 3a58a39563a596e3b08ad41e93070c84e205bddb (patch) | |
| tree | d8d40e1bb7f9029fa8a8d87774b712ab245b2ebf /Cargo.toml | |
| parent | 995d8a68d2d2fbd07f5631d65f96b20bf48abdd4 (diff) | |
| download | azalea-drasl-3a58a39563a596e3b08ad41e93070c84e205bddb.tar.xz | |
Fix the rsa / signature crate compilation errors (#245)
* Sort dependencies
* Fix RSA / Signature compilation error
* Remove incorrectly labeled minor / patch numbers on unlocked dependencies
* Remove unused bracket syntax
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 105 |
1 files changed, 53 insertions, 52 deletions
@@ -29,59 +29,60 @@ repository = "https://github.com/azalea-rs/azalea" # homepage = "https://github.com/azalea-rs/azalea" [workspace.dependencies] +aes = "0.8" +anyhow = "1" +async-compat = "0.2" +async-recursion = "1" +base64 = "0.22" +bevy_app = "0.16" +bevy_ecs = { version = "0.16", default-features = false } +bevy_log = "0.16" +bevy_tasks = "0.16" +bevy_time = "0.16" +byteorder = "1" +cfb8 = "0.8" +chrono = { version = "0.4", default-features = false } +compact_str = "0.9" +crc32c = "0.6" +criterion = "0.7" +derive_more = "2" +enum-as-inner = "0.6" +env_logger = "0.11" +flate2 = { version = "1", features = ["zlib-rs"] } +futures = "0.3" +futures-lite = "2" +hickory-resolver = "0.25" +indexmap = "2" +md-5 = "0.10" +minecraft_folder_path = "0.1" +nohash-hasher = "0.2" +num-bigint = "0.4" +num-format = "0.4" +num-traits = "0.2" +parking_lot = "0.12" +pastey = "0.1" +proc-macro2 = "1" +quote = "1" +rand = "0.9" +regex = "1" +reqwest = { version = "0.12", default-features = false } +rsa = "0.10.0-rc.6" +signature = "=3.0.0-rc.3" # TODO: Remove when rsa is fixed. +rsa_public_encrypt_pkcs1 = "0.4" +rustc-hash = "2" +serde = "1" +serde_json = "1" +sha1 = "0.11.0-rc.2" +sha2 = "0.11.0-rc.2" simdnbt = "0.8" -aes = "0.8.4" -anyhow = "1.0.99" -async-recursion = "1.1.1" -base64 = "0.22.1" -bevy_app = "0.16.1" -bevy_ecs = { version = "0.16.1", default-features = false } -bevy_log = "0.16.1" -bevy_tasks = "0.16.1" -bevy_time = "0.16.1" -byteorder = "1.5.0" -cfb8 = "0.8.1" -chrono = { version = "0.4.41", default-features = false } -criterion = "0.7.0" -derive_more = "2.0.1" -enum-as-inner = "0.6.1" -env_logger = "0.11.8" -flate2 = { version = "1.1.2", features = ["zlib-rs"] } -futures = "0.3.31" -futures-lite = "2.6.1" -minecraft_folder_path = "0.1.2" -nohash-hasher = "0.2.0" -num-bigint = "0.4.6" -num-traits = "0.2.19" -parking_lot = "0.12.4" -proc-macro2 = "1.0.97" -quote = "1.0.40" -rand = "0.9.2" -regex = "1.11.1" -reqwest = { version = "0.12.23", default-features = false } -rsa = { version = "0.10.0-rc.4", git = "https://github.com/RustCrypto/RSA", rev = "f32d85d1ed394a6d03f0403f423c19fda475b8bf" } -rsa_public_encrypt_pkcs1 = "0.4.0" -rustc-hash = "2.1.1" -serde = "1.0.219" -serde_json = "1.0.142" -sha1 = "0.10.1" -sha2 = "0.11.0-rc.0" -socks5-impl = "0.7.2" -syn = "2.0.104" -thiserror = "2.0.14" -tokio = "1.47.1" -tokio-util = "0.7.16" -tracing = "0.1.41" -tracing-subscriber = "0.3.19" -hickory-resolver = "0.25.2" -uuid = "1.18" -num-format = "0.4.4" -indexmap = "2.10.0" -pastey = "0.1.1" -compact_str = "0.9.0" -crc32c = "0.6.8" -async-compat = "0.2.4" -md-5 = "0.10.6" +socks5-impl = "0.7" +syn = "2" +thiserror = "2" +tokio = "1" +tokio-util = "0.7" +tracing = "0.1" +tracing-subscriber = "0.3" +uuid = "1" azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.13.0" } azalea-block = { path = "azalea-block", version = "0.13.0" } |
