Skip to content

Commit

Permalink
Relax version requirement for radicle dependencies
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
sebastinez authored and cloudhead committed Aug 20, 2024
1 parent beac367 commit c0aecba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion radicle-cli-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ thiserror = { version = "1" }

[dependencies.radicle]
path = "../radicle"
version = "0.12.0"
version = "0"
features = ["logger", "test"]
4 changes: 2 additions & 2 deletions radicle-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand All @@ -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]
Expand Down

0 comments on commit c0aecba

Please sign in to comment.