File: deps-rustix.patch

package info (click to toggle)
libblkio 1.5.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,016 kB
  • sloc: ansic: 3,443; sh: 432; makefile: 35; python: 16
file content (24 lines) | stat: -rw-r--r-- 950 bytes parent folder | download
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 }