Skip to content

Commit

Permalink
optimize internal gix usage for faster compile time
Browse files Browse the repository at this point in the history
Even though there is a chance that overall, it will compile multiple
different versions of the same thing so it's not actually faster.

But let's not think too much about that.
  • Loading branch information
Byron committed Sep 8, 2023
1 parent 2b8d09f commit 9d33e2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gix-config/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "config.rs"
[dev-dependencies]
gix-config = { path = ".."}
gix-testtools = { path = "../../tests/tools"}
gix = { path = "../../gix" }
gix = { path = "../../gix", default-features = false }
gix-ref = { path = "../../gix-ref" }
gix-path = { path = "../../gix-path" }
gix-sec = { path = "../../gix-sec" }
Expand Down
2 changes: 1 addition & 1 deletion gix-index/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gix-features-parallel = ["gix-features/parallel"]
gix-index = { path = ".." }
gix-features = { path = "../../gix-features", features = ["rustsha1", "progress"] }
gix-testtools = { path = "../../tests/tools"}
gix = { path = "../../gix"}
gix = { path = "../../gix", default-features = false, features = ["index"] }
gix-hash = { path = "../../gix-hash"}
filetime = "0.2.15"
bstr = { version = "1.3.0", default-features = false }

0 comments on commit 9d33e2f

Please sign in to comment.