Skip to content

Commit 7570daa

Browse files
committed
don't specify version numbers in dev-dependencies
Or the release won't work.
1 parent 1f6390c commit 7570daa

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

gix-blame/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ gix-traverse = { version = "^0.43.0", path = "../gix-traverse" }
2424
thiserror = "2.0.0"
2525

2626
[dev-dependencies]
27-
gix-ref = { version = "^0.49.0", path = "../gix-ref" }
28-
gix-filter = { version = "^0.16.0", path = "../gix-filter" }
29-
gix-fs = { version = "^0.12.0", path = "../gix-fs" }
30-
gix-index = { version = "^0.37.0", path = "../gix-index" }
31-
gix-odb = { version = "^0.66.0", path = "../gix-odb" }
27+
gix-ref = { path = "../gix-ref" }
28+
gix-filter = { path = "../gix-filter" }
29+
gix-fs = { path = "../gix-fs" }
30+
gix-index = { path = "../gix-index" }
31+
gix-odb = { path = "../gix-odb" }
3232
gix-testtools = { path = "../tests/tools" }

gix-diff/tests/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ path = "diff/main.rs"
1818

1919
[dev-dependencies]
2020
gix-diff = { path = ".." }
21-
gix-index = { version = "^0.37.0", path = "../../gix-index" }
22-
gix-pathspec = { version = "^0.8.1", path = "../../gix-pathspec" }
21+
gix-index = { path = "../../gix-index" }
22+
gix-pathspec = { path = "../../gix-pathspec" }
2323
gix-hash = { path = "../../gix-hash" }
2424
gix-fs = { path = "../../gix-fs" }
2525
gix-worktree = { path = "../../gix-worktree" }

gix-merge/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ document-features = { version = "0.2.0", optional = true }
4444
[dev-dependencies]
4545
gix-testtools = { path = "../tests/tools" }
4646
gix-odb = { path = "../gix-odb" }
47-
gix-utils = { version = "^0.1.12", path = "../gix-utils" }
47+
gix-utils = { path = "../gix-utils" }
4848
termtree = "0.5.1"
4949
pretty_assertions = "1.4.0"
5050

gix-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ document-features = { version = "0.2.1", optional = true }
4343

4444
[dev-dependencies]
4545
gix-testtools = { path = "../tests/tools" }
46-
gix-date = { version = "^0.9.3", path = "../gix-date" }
46+
gix-date = { path = "../gix-date" }
4747

4848
[package.metadata.docs.rs]
4949
features = ["document-features", "serde"]

0 commit comments

Comments
 (0)