diff rust/hg-core/src/dirstate.rs @ 52861:c5773445d350

rust-pyo3-dirstate: DirstateMap iterators Pretty straightforward with `py_shared_iterator!`.
author Georges Racinet <georges.racinet@cloudcrane.io>
date Wed, 29 Jan 2025 19:13:46 +0100
parents 79e8118cd846
children c917656a259d
line wrap: on
line diff
--- a/rust/hg-core/src/dirstate.rs	Tue Feb 04 11:55:14 2025 +0100
+++ b/rust/hg-core/src/dirstate.rs	Wed Jan 29 19:13:46 2025 +0100
@@ -46,6 +46,7 @@
     dyn Iterator<
             Item = Result<(&'a HgPath, DirstateEntry), DirstateV2ParseError>,
         > + Send
+        + Sync
         + 'a,
 >;