Skip to content

Commit f9dd0f8

Browse files
astefanoclaude
andcommitted
fix: use git dep for probe-extract-check instead of local path
The path dependency `../probe/probe-extract-check` breaks `cargo install --git` and CI because Cargo validates all path deps during manifest parsing, even dev-dependencies it won't build. Replace with a git dependency pointing at the probe repo. Made-with: Cursor Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b0ba32c commit f9dd0f8

2 files changed

Lines changed: 68 additions & 2 deletions

File tree

Cargo.lock

Lines changed: 65 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ path = "src/main.rs"
1414

1515
[dependencies]
1616
serde = { version = "1.0", features = ["derive"] }
17-
serde_json = "1.0"
17+
serde_json = { version = "1.0", features = ["unbounded_depth"] }
18+
serde_stacker = "0.1"
1819
syn = { version = "2", features = ["full", "visit", "extra-traits"] }
1920
proc-macro2 = { version = "1.0", features = ["span-locations"] }
2021
quote = "1.0"
@@ -31,7 +32,7 @@ which = "8.0.2"
3132
sha2 = "0.10.9"
3233

3334
[dev-dependencies]
34-
probe-extract-check = { path = "../probe/probe-extract-check" }
35+
probe-extract-check = { git = "https://github.com/Beneficial-AI-Foundation/probe" }
3536
tempfile = "3.10"
3637

3738
[profile.release]

0 commit comments

Comments
 (0)