Skip to content

Commit

Permalink
fix: dev-dependencies should use path deps
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Feb 1, 2024
1 parent c3ec400 commit 5b96f44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ rand = { workspace = true }
rstest = { workspace = true }
tracing-test = { workspace = true }
insta = { workspace = true, features = ["yaml"] }
rattler_lock = { workspace = true }
rattler_lock = { path = "../rattler_lock" }

tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
axum = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_conda_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ url = { workspace = true, features = ["serde"] }
[dev-dependencies]
rand = { workspace = true }
insta = { workspace = true, features = ["yaml", "redactions", "toml"] }
rattler_package_streaming = { workspace = true, features = ["rustls-tls"] }
rattler_package_streaming = { path = "../rattler_package_streaming", features = ["rustls-tls"] }
tempfile = { workspace = true }
rstest = { workspace = true }
assert_matches = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resolvo = { workspace = true, optional = true }
criterion = { workspace = true }
insta = { workspace = true, features = ["yaml"] }
once_cell = { workspace = true }
rattler_repodata_gateway = { workspace = true, features = ["sparse"] }
rattler_repodata_gateway = { path = "../rattler_repodata_gateway", features = ["sparse"] }
rstest = { workspace = true }
serde_json = { workspace = true }
similar-asserts = { workspace = true }
Expand Down

0 comments on commit 5b96f44

Please sign in to comment.