Skip to content

Commit e94466f

Browse files
fix: remove version constraints from workspace path dependencies (#205)
Path dependencies in a workspace don't need version constraints. Having them causes issues during release preparation when versions are bumped but not yet published to crates.io.
1 parent e99dcb0 commit e94466f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/redisctl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ name = "redisctl"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
redis-cloud = { version = "0.1.2", path = "../redis-cloud" }
20-
redis-enterprise = { version = "0.2.0", path = "../redis-enterprise" }
19+
redis-cloud = { path = "../redis-cloud" }
20+
redis-enterprise = { path = "../redis-enterprise" }
2121

2222
# CLI dependencies
2323
clap = { workspace = true }

0 commit comments

Comments
 (0)