41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
From ad3ba20d878a410a92d496beb7cf8ddf1f18e739 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
|
|
<jan.christian@gruenhage.xyz>
|
|
Date: Fri, 15 Dec 2023 19:38:11 +0100
|
|
Subject: [PATCH] fix index-guix dependency of crevette
|
|
|
|
---
|
|
Cargo.lock | 2 ++
|
|
crevette/Cargo.toml | 2 +-
|
|
2 files changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 7ab97e0..0416f03 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -3341,6 +3341,8 @@ dependencies = [
|
|
[[package]]
|
|
name = "index-guix"
|
|
version = "1.0.0"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "bd5527d0b9a90f16299c4db9a1c93c74089abe2e38dbd640b69e4afc378038e3"
|
|
dependencies = [
|
|
"gix 0.55.2",
|
|
"nom",
|
|
diff --git a/crevette/Cargo.toml b/crevette/Cargo.toml
|
|
index f40ed63..0acd77d 100644
|
|
--- a/crevette/Cargo.toml
|
|
+++ b/crevette/Cargo.toml
|
|
@@ -23,7 +23,7 @@ toml_edit = { version = "0.21.0", features = ["serde"] }
|
|
cargo_author = { version = "1.0.6", optional = true }
|
|
flate2 = { version = "1.0.28", optional = true }
|
|
index-debcargo = { version = "1.1.0", optional = true }
|
|
-index-guix = { version = "1.0.0", optional = true, path = "../../index-guix" }
|
|
+index-guix = { version = "1.0.0", optional = true }
|
|
reqwest = { version = "0.11.22", features = ["blocking"], optional = true }
|
|
|
|
[features]
|
|
--
|
|
2.43.0
|
|
|