Skip to content

Commit

Permalink
don't specify version numbers in dev-dependencies
Browse files Browse the repository at this point in the history
Or the release won't work.
  • Loading branch information
Byron committed Jan 18, 2025
1 parent 1f6390c commit 7570daa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions gix-blame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ gix-traverse = { version = "^0.43.0", path = "../gix-traverse" }
thiserror = "2.0.0"

[dev-dependencies]
gix-ref = { version = "^0.49.0", path = "../gix-ref" }
gix-filter = { version = "^0.16.0", path = "../gix-filter" }
gix-fs = { version = "^0.12.0", path = "../gix-fs" }
gix-index = { version = "^0.37.0", path = "../gix-index" }
gix-odb = { version = "^0.66.0", path = "../gix-odb" }
gix-ref = { path = "../gix-ref" }
gix-filter = { path = "../gix-filter" }
gix-fs = { path = "../gix-fs" }
gix-index = { path = "../gix-index" }
gix-odb = { path = "../gix-odb" }
gix-testtools = { path = "../tests/tools" }
4 changes: 2 additions & 2 deletions gix-diff/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ path = "diff/main.rs"

[dev-dependencies]
gix-diff = { path = ".." }
gix-index = { version = "^0.37.0", path = "../../gix-index" }
gix-pathspec = { version = "^0.8.1", path = "../../gix-pathspec" }
gix-index = { path = "../../gix-index" }
gix-pathspec = { path = "../../gix-pathspec" }
gix-hash = { path = "../../gix-hash" }
gix-fs = { path = "../../gix-fs" }
gix-worktree = { path = "../../gix-worktree" }
Expand Down
2 changes: 1 addition & 1 deletion gix-merge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ document-features = { version = "0.2.0", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-odb = { path = "../gix-odb" }
gix-utils = { version = "^0.1.12", path = "../gix-utils" }
gix-utils = { path = "../gix-utils" }
termtree = "0.5.1"
pretty_assertions = "1.4.0"

Expand Down
2 changes: 1 addition & 1 deletion gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ document-features = { version = "0.2.1", optional = true }

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

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

0 comments on commit 7570daa

Please sign in to comment.