From 0a3ce48a1749247c0aa78988e2876acc5f230dad Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:30:54 +1000 Subject: [PATCH] Fix winnow version requirement in gix-object Fixed #1538 --- gix-object/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix-object/Cargo.toml b/gix-object/Cargo.toml index a5afd8375f1..93b90803d33 100644 --- a/gix-object/Cargo.toml +++ b/gix-object/Cargo.toml @@ -50,7 +50,7 @@ bstr = { version = "1.3.0", default-features = false, features = [ "std", "unicode", ] } -winnow = { version = "0.6", features = ["simd"] } +winnow = { version = "0.6.18", features = ["simd"] } smallvec = { version = "1.4.0", features = ["write"] } serde = { version = "1.0.114", optional = true, default-features = false, features = [ "derive",