Skip to content

Commit 516e105

Browse files
committed
Update winnow to 0.5.40
1 parent 74631d4 commit 516e105

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gix-actor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gix-date = { version = "^0.8.3", path = "../gix-date" }
2323
thiserror = "1.0.38"
2424
btoi = "0.4.2"
2525
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
26-
winnow = { version = "0.5.36", features = ["simd"] }
26+
winnow = { version = "0.5.40", features = ["simd"] }
2727
itoa = "1.0.1"
2828
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
2929

gix-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gix-sec = { version = "^0.10.4", path = "../gix-sec" }
2424
gix-ref = { version = "^0.42.0", path = "../gix-ref" }
2525
gix-glob = { version = "^0.16.0", path = "../gix-glob" }
2626

27-
winnow = { version = "0.5.36", features = ["simd"] }
27+
winnow = { version = "0.5.40", features = ["simd"] }
2828
memchr = "2"
2929
thiserror = "1.0.26"
3030
unicode-bom = "2.0.2"

gix-object/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ btoi = "0.4.2"
3838
itoa = "1.0.1"
3939
thiserror = "1.0.34"
4040
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
41-
winnow = { version = "0.5.36", features = ["simd"] }
41+
winnow = { version = "0.5.40", features = ["simd"] }
4242
smallvec = { version = "1.4.0", features = ["write"] }
4343
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
4444

gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ gix-credentials = { version = "^0.24.0", path = "../gix-credentials" }
4949
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"] }
52-
winnow = { version = "0.5.36", features = ["simd"] }
52+
winnow = { version = "0.5.40", features = ["simd"] }
5353
btoi = "0.4.2"
5454

5555
# for async-client

gix-protocol/src/remote_progress.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use bstr::ByteSlice;
44
use winnow::{
55
combinator::{opt, preceded, terminated},
66
prelude::*,
7-
token::{tag, take_till},
7+
token::take_till,
88
};
99

1010
/// The information usually found in remote progress messages as sent by a git server during
@@ -85,7 +85,7 @@ fn next_optional_percentage(i: &mut &[u8]) -> PResult<Option<u32>, ()> {
8585
take_till(0.., |c: u8| c.is_ascii_digit()),
8686
parse_number.try_map(u32::try_from),
8787
),
88-
tag(b"%"),
88+
b"%",
8989
))
9090
.parse_next(i)
9191
}

gix-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gix-lock = { version = "^13.0.0", path = "../gix-lock" }
3232
gix-tempfile = { version = "^13.0.0", default-features = false, path = "../gix-tempfile" }
3333

3434
thiserror = "1.0.34"
35-
winnow = { version = "0.5.36", features = ["simd"] }
35+
winnow = { version = "0.5.40", features = ["simd"] }
3636
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
3737

3838
# packed refs

tests/tools/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gix-worktree = "0.26"
2121
gix-fs = { version = "^0.10.0", path = "../../gix-fs" }
2222
gix-tempfile = { version = "^13.0.0", default-features = false, features = ["signals"], path = "../../gix-tempfile" }
2323

24-
winnow = { version = "0.5.36", features = ["simd"] }
24+
winnow = { version = "0.5.40", features = ["simd"] }
2525
fastrand = "2.0.0"
2626
bstr = { version = "1.5.0", default-features = false }
2727
crc = "3.0.0"

0 commit comments

Comments
 (0)