Description: Downgrade winnow dependency from 1.0 to 0.7
 winnow 1.0 introduced optional feature gates for the ascii and parser
 combinator modules, but stgit does not need any 1.0-specific APIs.
 All APIs used by stgit (ModalResult, ContextError, ErrMode, the combinator
 and ascii modules, Stream::iter_offsets/next_token/next_slice/checkpoint/reset)
 are present in winnow 0.7, which is the version packaged in Debian as
 librust-winnow-dev.
Forwarded: no
Last-Update: 2026-06-06

Index: stgit/Cargo.toml
===================================================================
--- stgit.orig/Cargo.toml
+++ stgit/Cargo.toml
@@ -58,7 +58,7 @@ tar = "0.4"
 tempfile = "3"
 termcolor = "1.4"
 thiserror = "~2.0"
-winnow = "1.0"
+winnow = "0.7"
 
 curl = { version = "0.4", optional = true }
 
