summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-02-12 11:14:51 +0200
committerLars Wirzenius <liw@liw.fi>2024-02-12 11:14:51 +0200
commitf182bf21c93387f452de7a4fa897c1da136298b0 (patch)
treee496febe43c89585466a433b4a662a3fb83cd104
parent9b60a8103727e0fa5548056f66415d1cf1db22dd (diff)
downloadradicle-native-ci-f182bf21c93387f452de7a4fa897c1da136298b0.tar.gz
fix: change radicle-ci-broker to use a git dependency
Signed-off-by: Lars Wirzenius <liw@liw.fi>
-rw-r--r--Cargo.lock17
-rw-r--r--Cargo.toml5
2 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index aedcbef..c7ddec5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -700,9 +700,9 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "2.2.2"
+version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520"
+checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177"
dependencies = [
"equivalent",
"hashbrown",
@@ -720,9 +720,9 @@ dependencies = [
[[package]]
name = "is-terminal"
-version = "0.4.11"
+version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fe8f25ce1159c7740ff0b9b2f5cdf4a8428742ba7c112b9f20f22cd5219c7dab"
+checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
dependencies = [
"hermit-abi",
"libc",
@@ -1149,6 +1149,7 @@ dependencies = [
[[package]]
name = "radicle-ci-broker"
version = "0.1.0"
+source = "git+https://radicle.liw.fi/zwTxygwuz5LDGBq255RA2CbNGrz8.git?branch=main#ab5197b7e4c0aafc00e3a5de3abaa577a49178ab"
dependencies = [
"log",
"pretty_env_logger",
@@ -1674,18 +1675,18 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.56"
+version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
+checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.56"
+version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
+checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 12884eb..124355e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,6 @@ walkdir = "2.4.0"
git = "https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5.git"
branch = "master"
-# This is a path dependency for now, until the repository is on a
-# stable seed node.
[dependencies.radicle-ci-broker]
-path = "../radicle-ci-broker"
+git = "https://radicle.liw.fi/zwTxygwuz5LDGBq255RA2CbNGrz8.git"
+branch = "main"