aw-watcher-window-wayland: fix version of rustc-serialize

The bundled version of rustc-serialize can not be compiled with Rust
versions starting with 1.76.0.
This commit is contained in:
Jonas Meurer 2024-05-08 16:11:52 +02:00
parent b8b3be7098
commit feceab59a5
No known key found for this signature in database
GPG Key ID: 7D00DC06D0B220A0
3 changed files with 20 additions and 2 deletions

View File

@ -996,9 +996,9 @@ dependencies = [
[[package]]
name = "rustc-serialize"
version = "0.3.24"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
checksum = "fe834bc780604f4674073badbad26d7219cadfb4a2275802db12cbae17498401"
[[package]]
name = "rustix"

View File

@ -16,6 +16,8 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-xl9+k6xJp5/t1QPOYfnBLyYprhhrzjzByDKkT3dtVVQ=";
};
cargoPatches = [ ./rustc-serialize-fix.patch ];
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {

View File

@ -0,0 +1,16 @@
diff --git a/Cargo.lock b/Cargo.lock
index b1cc23695b30..ffdeb1c90618 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -996,9 +996,9 @@ dependencies = [
[[package]]
name = "rustc-serialize"
-version = "0.3.24"
+version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
+checksum = "fe834bc780604f4674073badbad26d7219cadfb4a2275802db12cbae17498401"
[[package]]
name = "rustix"