From c0aecbac3a0f5daf90f8110983c81b1ee1972090 Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Tue, 6 Aug 2024 14:49:16 -0300 Subject: [PATCH] Relax version requirement for `radicle` dependencies Since a few crates rely on the `radicle` crate, dependency updates that affect multiple crates like `git2` are not able to resolve the dependencies and fail, if the version is fixed to e.g. `0.12.0` --- radicle-cli-test/Cargo.toml | 2 +- radicle-cli/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/radicle-cli-test/Cargo.toml b/radicle-cli-test/Cargo.toml index fe40be9b..e9d6874d 100644 --- a/radicle-cli-test/Cargo.toml +++ b/radicle-cli-test/Cargo.toml @@ -20,5 +20,5 @@ thiserror = { version = "1" } [dependencies.radicle] path = "../radicle" -version = "0.12.0" +version = "0" features = ["logger", "test"] diff --git a/radicle-cli/Cargo.toml b/radicle-cli/Cargo.toml index 321adf7f..f96e47ce 100644 --- a/radicle-cli/Cargo.toml +++ b/radicle-cli/Cargo.toml @@ -47,7 +47,7 @@ tree-sitter-md = { version = "0.1.5" } zeroize = { version = "1.1" } [dependencies.radicle] -version = "0.12.0" +version = "0" path = "../radicle" features = ["logger"] @@ -69,7 +69,7 @@ path = "../radicle-term" [dev-dependencies] pretty_assertions = { version = "1.3.0" } -radicle = { version = "0.12.0", path = "../radicle", features = ["test"] } +radicle = { version = "0", path = "../radicle", features = ["test"] } radicle-node = { path = "../radicle-node", features = ["test"] } [lints]