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`
This commit is contained in:
Sebastian Martinez 2024-08-06 14:49:16 -03:00 committed by cloudhead
parent beac367056
commit c0aecbac3a
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -20,5 +20,5 @@ thiserror = { version = "1" }
[dependencies.radicle] [dependencies.radicle]
path = "../radicle" path = "../radicle"
version = "0.12.0" version = "0"
features = ["logger", "test"] features = ["logger", "test"]

View File

@ -47,7 +47,7 @@ tree-sitter-md = { version = "0.1.5" }
zeroize = { version = "1.1" } zeroize = { version = "1.1" }
[dependencies.radicle] [dependencies.radicle]
version = "0.12.0" version = "0"
path = "../radicle" path = "../radicle"
features = ["logger"] features = ["logger"]
@ -69,7 +69,7 @@ path = "../radicle-term"
[dev-dependencies] [dev-dependencies]
pretty_assertions = { version = "1.3.0" } 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"] } radicle-node = { path = "../radicle-node", features = ["test"] }
[lints] [lints]