Skip to content

Commit 3923723

Browse files
Mileriasclaude
andcommitted
fix(ci): add version to workspace path deps for cargo-deny
cargo-deny 0.19 flags path-only workspace deps as wildcards since they could be published. Adding explicit versions resolves this. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7c16f67 commit 3923723

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ unsafe_code = "deny"
3333
missing_docs = "warn"
3434

3535
[workspace.dependencies]
36-
mantis-core = { path = "crates/core" }
37-
mantis-types = { path = "crates/types" }
38-
mantis-queue = { path = "crates/queue" }
39-
mantis-bench = { path = "crates/bench" }
40-
mantis-layout = { path = "crates/layout" }
41-
mantis-verify = { path = "crates/verify" }
36+
mantis-core = { path = "crates/core", version = "0.1.0" }
37+
mantis-types = { path = "crates/types", version = "0.1.0" }
38+
mantis-queue = { path = "crates/queue", version = "0.1.0" }
39+
mantis-bench = { path = "crates/bench", version = "0.1.0" }
40+
mantis-layout = { path = "crates/layout", version = "0.1.0" }
41+
mantis-verify = { path = "crates/verify", version = "0.1.0" }
4242
criterion = { version = "0.5", features = ["html_reports"] }
4343
bolero = "0.11"

0 commit comments

Comments
 (0)