1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Michael Tokarev <mjt@tls.msk.ru>
Subject: switch to rustix 1.x
Date: Wed, 27 Aug 2025 14:11:23 +0300
Forwarded: not-needed
Debian-Specific: yes
Bug-Debian: https://bugs.debian.org/1110380
diff --git a/blkio/Cargo.toml b/blkio/Cargo.toml
--- a/blkio/Cargo.toml
+++ b/blkio/Cargo.toml
@@ -30,3 +30,3 @@ lazy_static = "1.1"
libc = { version = "0.2", features = ["extra_traits"] }
-rustix = { version = "0.38", features = ["event", "fs", "mm"] }
+rustix = { version = "1", features = ["event", "fs", "mm"] }
pci-driver = { version = "0.1.2", default-features = false, optional = true }
diff --git a/virtio-driver/Cargo.toml b/virtio-driver/Cargo.toml
index 50ddcb9..f1ff446 100644
--- a/virtio-driver/Cargo.toml
+++ b/virtio-driver/Cargo.toml
@@ -20,3 +20,3 @@ bitflags = "1.2"
libc = "0.2"
-rustix = { version = "0.38", features = ["event"] }
+rustix = { version = "1", features = ["event"] }
memmap2 = { version = "<0.10", optional = true }
|