device-mapper-persistent-data/0001-Tweak-cargo.toml-to-work-with-vendor-directory.patch

40 lines
1.3 KiB
Diff
Raw Normal View History

2023-07-27 10:15:09 +00:00
From 8b3609298420f5984ac3a2c74cb2ac4f94897eb0 Mon Sep 17 00:00:00 2001
2023-02-22 14:49:20 +00:00
From: Marian Csontos <mcsontos@redhat.com>
2023-07-27 10:15:09 +00:00
Date: Thu, 27 Jul 2023 11:37:01 +0200
2023-02-22 14:49:20 +00:00
Subject: [PATCH] Tweak cargo.toml to work with vendor directory
2023-04-28 14:41:15 +00:00
Mock works offline, cargo would try to download the files from github.
So cargo vendor has to be run first, and then change the Cargo.toml to
make mock happy.
2023-02-22 14:49:20 +00:00
---
2023-04-28 14:41:15 +00:00
Cargo.toml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
2023-02-22 14:49:20 +00:00
diff --git a/Cargo.toml b/Cargo.toml
2023-07-27 10:15:09 +00:00
index 8be49a52..b9b05ce6 100644
2023-02-22 14:49:20 +00:00
--- a/Cargo.toml
+++ b/Cargo.toml
2023-04-28 14:41:15 +00:00
@@ -11,7 +11,8 @@ anyhow = "1.0"
2023-07-27 10:15:09 +00:00
base64 = "0.21"
2023-04-28 14:41:15 +00:00
byteorder = "1.4"
2023-07-27 10:15:09 +00:00
clap = { version = "4.3", default-features = false, features = ["std", "help", "usage", "error-context", "suggestions"] }
2023-04-28 14:41:15 +00:00
-crc32c = { git = "https://github.com/zowens/crc32c", branch = "master" }
+#crc32c = { git = "https://github.com/zowens/crc32c", branch = "master" }
+crc32c = "0.6"
2023-07-27 10:15:09 +00:00
data-encoding = "2.4"
2023-04-28 14:41:15 +00:00
exitcode = "1.1.2"
fixedbitset = "0.4"
2023-07-27 10:15:09 +00:00
@@ -27,7 +28,8 @@ quick-xml = "0.29"
2023-02-22 14:49:20 +00:00
rand = "0.8"
2023-07-27 10:15:09 +00:00
rangemap = "1.3"
2023-02-22 14:49:20 +00:00
roaring = "0.10"
-rio = { git = "https://github.com/jthornber/rio", branch = "master", optional = true }
+#rio = { git = "https://github.com/jthornber/rio", branch = "master", optional = true }
+rio = { version = "0.9.4", optional = true }
safemem = "0.3"
threadpool = "1.8"
thiserror = "1.0"
--
2023-07-27 10:15:09 +00:00
2.41.0
2023-02-22 14:49:20 +00:00