Skip to content

Commit 9d33e2f

Browse files
committed
optimize internal gix usage for faster compile time
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.
1 parent 2b8d09f commit 9d33e2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gix-config/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "config.rs"
1717
[dev-dependencies]
1818
gix-config = { path = ".."}
1919
gix-testtools = { path = "../../tests/tools"}
20-
gix = { path = "../../gix" }
20+
gix = { path = "../../gix", default-features = false }
2121
gix-ref = { path = "../../gix-ref" }
2222
gix-path = { path = "../../gix-path" }
2323
gix-sec = { path = "../../gix-sec" }

gix-index/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ gix-features-parallel = ["gix-features/parallel"]
2020
gix-index = { path = ".." }
2121
gix-features = { path = "../../gix-features", features = ["rustsha1", "progress"] }
2222
gix-testtools = { path = "../../tests/tools"}
23-
gix = { path = "../../gix"}
23+
gix = { path = "../../gix", default-features = false, features = ["index"] }
2424
gix-hash = { path = "../../gix-hash"}
2525
filetime = "0.2.15"
2626
bstr = { version = "1.3.0", default-features = false }

0 commit comments

Comments
 (0)