Skip to content

Commit 89d77dc

Browse files
committed
use workspace dependency for unicode-bom
1 parent 78a7e32 commit 89d77dc

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,8 @@ faster-hex = { version = "0.9.0", default-features = false }
304304
reqwest = { version = "0.12.0", default-features = false, features = ["charset", "http2", "macos-system-configuration"] } # all but the 'default-tls' feature
305305
curl = { version = "0.4" }
306306
winnow = { version = "0.6.0", features = ["simd"] }
307+
unicode-bom = "2.0.2"
308+
307309

308310
[package.metadata.docs.rs]
309311
features = ["document-features", "max"]

gix-attributes/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2222
gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2323
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
2424

25-
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
25+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
2626
smallvec = "1.10.0"
2727
kstring = "2.0.0"
28-
unicode-bom = "2.0.2"
28+
unicode-bom.workspace = true
2929
thiserror = "1.0.26"
30-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
30+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3131

3232
document-features = { version = "0.2.1", optional = true }
3333

3434
[dev-dependencies]
35-
gix-testtools = { path = "../tests/tools"}
35+
gix-testtools = { path = "../tests/tools" }
3636
gix-fs = { path = "../gix-fs" }
3737

3838
[package.metadata.docs.rs]

gix-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2727
winnow.workspace = true
2828
memchr = "2"
2929
thiserror = "1.0.26"
30-
unicode-bom = "2.0.2"
30+
unicode-bom.workspace = true
3131
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
3232
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3333
smallvec = "1.9.0"

gix-ignore/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2121
gix-path = { version = "^0.10.9", path = "../gix-path" }
2222
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
2323

24-
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
25-
unicode-bom = "2.0.2"
26-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
24+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
25+
unicode-bom.workspace = true
26+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
2727

2828
document-features = { version = "0.2.1", optional = true }
2929

3030
[dev-dependencies]
31-
gix-testtools = { path = "../tests/tools"}
31+
gix-testtools = { path = "../tests/tools" }
3232
gix-fs = { path = "../gix-fs" }
3333

3434
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)