Skip to content

Commit e6454e1

Browse files
fix: use path = "." for self-referential dev-dependency
After the GitHub repo rename, the runner checks out into a directory named after the repo, so ../tycho-execution no longer resolves. Using path = "." is always correct regardless of checkout directory name. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> Took 43 seconds # Commit time for manual adjustment: # Took 5 minutes
1 parent cd9f9bc commit e6454e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ typetag = { version = "0.2", optional = true }
5050

5151
[dev-dependencies]
5252
rstest = "0.24.0"
53-
tycho-execution = { path = "../tycho-execution", features = ["test-utils"] }
53+
tycho-execution = { path = ".", features = ["test-utils"] }
5454

5555
[features]
5656
default = ["evm"]

0 commit comments

Comments
 (0)