Skip to content

Commit ca0512a

Browse files
committed
fix: deactivate btoi default features to avoid numtrait compile times (#729)
1 parent a86a5c0 commit ca0512a

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ members = [
308308
prodash = { version = "28.0.0", default-features = false }
309309
futures-lite = { version = "2.1.0", default-features = false, features = ["std"] }
310310
faster-hex = { version = "0.9.0", default-features = false }
311+
btoi = { version = "0.4.3", default-features = false }
311312

312313
[package.metadata.docs.rs]
313314
features = ["document-features", "max"]

gix-actor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gix-features = { version = "^0.38.0", path = "../gix-features", optional = true
2121
gix-date = { version = "^0.8.3", path = "../gix-date" }
2222

2323
thiserror = "1.0.38"
24-
btoi = "0.4.2"
24+
btoi.workspace = true
2525
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
2626
winnow = { version = "0.5.36", features = ["simd"] }
2727
itoa = "1.0.1"

gix-index/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ bstr = { version = "1.3.0", default-features = false }
3737

3838
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3939
smallvec = "1.7.0"
40-
btoi = "0.4.3"
40+
btoi.workspace = true
4141
itoa = "1.0.3"
4242
bitflags = "2"
4343

gix-object/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ gix-validate = { version = "^0.8.3", path = "../gix-validate" }
3434
gix-actor = { version = "^0.30.0", path = "../gix-actor" }
3535
gix-date = { version = "^0.8.3", path = "../gix-date" }
3636

37-
btoi = "0.4.2"
37+
btoi.workspace = true
3838
itoa = "1.0.1"
3939
thiserror = "1.0.34"
4040
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }

gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ thiserror = "1.0.32"
5050
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
5151
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
5252
winnow = { version = "0.5.36", features = ["simd"] }
53-
btoi = "0.4.2"
53+
btoi.workspace = true
5454

5555
# for async-client
5656
async-trait = { version = "0.1.51", optional = true }

gix-quote/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ doctest = false
1515
[dependencies]
1616
bstr = { version = "1.3.0", default-features = false, features = ["std"]}
1717
thiserror = "1.0.38"
18-
btoi = "0.4.2"
18+
btoi.workspace = true

0 commit comments

Comments
 (0)