Skip to content

Commit 78a7e32

Browse files
committed
make winnow a workspace dependency
1 parent 415036c commit 78a7e32

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ futures-lite = { version = "2.1.0", default-features = false, features = ["std"]
303303
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" }
306+
winnow = { version = "0.6.0", features = ["simd"] }
306307

307308
[package.metadata.docs.rs]
308309
features = ["document-features", "max"]

gix-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
2626
"std",
2727
"unicode",
2828
] }
29-
winnow = { version = "0.6.0", features = ["simd"] }
29+
winnow.workspace = true
3030
itoa = "1.0.1"
3131
serde = { version = "1.0.114", optional = true, default-features = false, features = [
3232
"derive",

gix-config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ autotests = false
1717
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]
1818

1919
[dependencies]
20-
gix-features = { version = "^0.38.2", path = "../gix-features"}
20+
gix-features = { version = "^0.38.2", path = "../gix-features" }
2121
gix-config-value = { version = "^0.14.7", path = "../gix-config-value" }
2222
gix-path = { version = "^0.10.9", path = "../gix-path" }
2323
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
2424
gix-ref = { version = "^0.45.0", path = "../gix-ref" }
2525
gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2626

27-
winnow = { version = "0.6.0", features = ["simd"] }
27+
winnow.workspace = true
2828
memchr = "2"
2929
thiserror = "1.0.26"
3030
unicode-bom = "2.0.2"
3131
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
32-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
32+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3333
smallvec = "1.9.0"
3434
once_cell = "1.14.0"
3535

gix-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
5050
"std",
5151
"unicode",
5252
] }
53-
winnow = { version = "0.6.0", features = ["simd"] }
53+
winnow.workspace = true
5454
smallvec = { version = "1.4.0", features = ["write"] }
5555
serde = { version = "1.0.114", optional = true, default-features = false, features = [
5656
"derive",

gix-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
6262
"std",
6363
"unicode",
6464
] }
65-
winnow = { version = "0.6.0", features = ["simd"] }
65+
winnow.workspace = true
6666

6767
# for async-client
6868
async-trait = { version = "0.1.51", optional = true }

gix-ref/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gix-lock = { version = "^14.0.0", path = "../gix-lock" }
3131
gix-tempfile = { version = "^14.0.0", default-features = false, path = "../gix-tempfile" }
3232

3333
thiserror = "1.0.34"
34-
winnow = { version = "0.6.0", features = ["simd"] }
34+
winnow.workspace = true
3535
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3636

3737
# packed refs

0 commit comments

Comments
 (0)