diff options
| author | mat <git@matdoes.dev> | 2025-12-23 19:58:02 -0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-23 19:58:02 -0330 |
| commit | 599bbfc8ce95a2b5aefe6b22e3b8b0931b5c9581 (patch) | |
| tree | 48b708f8e41e2ccd52001bbc4c40f3b54a94ab0d | |
| parent | 0fdcff1909b28c5f61587ff5031c67e2880b84fc (diff) | |
| download | azalea-drasl-599bbfc8ce95a2b5aefe6b22e3b8b0931b5c9581.tar.xz | |
bump deps and avoid build.rs writing unnecessarily in some cases
| -rw-r--r-- | Cargo.lock | 20 | ||||
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | azalea-client/build.rs | 2 |
3 files changed, 17 insertions, 11 deletions
@@ -1826,7 +1826,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2 0.6.1", + "socket2 0.5.10", "tokio", "tower-service", "tracing", @@ -2528,7 +2528,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2 0.6.1", + "socket2 0.5.10", "thiserror 2.0.17", "tokio", "tracing", @@ -2565,7 +2565,7 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2 0.6.1", + "socket2 0.5.10", "tracing", "windows-sys 0.60.2", ] @@ -2929,15 +2929,15 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.146" +version = "1.0.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" +checksum = "6af14725505314343e673e9ecb7cd7e8a36aa9791eb936235a3567cc31447ae4" dependencies = [ "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -3774,7 +3774,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.48.0", ] [[package]] @@ -4150,3 +4150,9 @@ name = "zlib-rs" version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3" + +[[package]] +name = "zmij" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e404bcd8afdaf006e529269d3e85a743f9480c3cef60034d77860d02964f3ba" @@ -49,7 +49,7 @@ criterion = "0.8.1" crypto-bigint = "=0.7.0-rc.10" # TODO: Remove when rsa is fixed. crypto-primes = "=0.7.0-pre.4" -derive_more = "2.1.0" +derive_more = "2.1.1" enum-as-inner = "0.6.1" env_logger = "0.11.8" flate2 = { version = "1.1.5", features = ["zlib-rs"] } @@ -71,12 +71,12 @@ rand = "0.10.0-rc.5" # TODO: Remove when rand is fixed. rand_core = "=0.10.0-rc-2" regex = "1.12.2" -reqwest = { version = "0.12.26", default-features = false } +reqwest = { version = "0.12.28", default-features = false } rsa = "0.10.0-rc.10" rsa_public_encrypt_pkcs1 = "0.4.0" rustc-hash = "2.1.1" serde = "1.0.228" -serde_json = "1.0.145" +serde_json = "1.0.147" sha1 = "0.11.0-rc.3" sha2 = "0.11.0-rc.3" # TODO: Remove when rsa is fixed. diff --git a/azalea-client/build.rs b/azalea-client/build.rs index 156f73a6..7f18092d 100644 --- a/azalea-client/build.rs +++ b/azalea-client/build.rs @@ -41,7 +41,7 @@ fn main() { let mod_rs_path = Path::new("tests/simulation/mod.rs"); let existing_mod_rs = fs::read_to_string(mod_rs_path).unwrap_or_default(); - if mod_rs == existing_mod_rs { + if mod_rs.trim() == existing_mod_rs.trim() { // this would cause the build script to run again return; } |
