Skip to content

Commit 7aef797

Browse files
wflixuclaude
andcommitted
fix: specify version requirement for mdz-rs dependency
- Add version = "1.0.0" to mdz-rs path dependency in mdz/Cargo.toml - This fixes the crates.io publishing error where all dependencies must have version requirements - Enables successful publishing of mdz CLI package to complement mdz-rs library 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 380aabe commit 7aef797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories = ["command-line-utilities"]
1212
[dependencies]
1313
clap = { version = "4", features = ["derive"] }
1414
anyhow = "1"
15-
mdz-rs = { path = "../mdz-rs" }
15+
mdz-rs = { version = "1.0.0", path = "../mdz-rs" }
1616
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
1717
serde_json = "1" # 用于测试中解析 JSON
1818

0 commit comments

Comments
 (0)