comparison rust/hg-core/src/lib.rs @ 45944:595979dc924e

copies: introduce a basic Rust function for `combine_changeset_copies` This new function mirror the python code. This first implementation does a lot of data copies and is therefore quite slow. However my goal here is to create a simple "frame" from where to start adding optimization. This patch focus on the `hg-core` part of this work. Coming patches will do the necessary `hg-cpython` work to be able to use this from Python. Differential Revision: https://phab.mercurial-scm.org/D9297
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 01 Oct 2020 18:51:06 +0200
parents a2eda1ff22aa
children 8a4914397d02
comparison
equal deleted inserted replaced
45943:a9797b49fb69 45944:595979dc924e
18 status, BadMatch, BadType, DirstateStatus, StatusError, StatusOptions, 18 status, BadMatch, BadType, DirstateStatus, StatusError, StatusOptions,
19 }, 19 },
20 CopyMap, CopyMapIter, DirstateEntry, DirstateParents, EntryState, 20 CopyMap, CopyMapIter, DirstateEntry, DirstateParents, EntryState,
21 StateMap, StateMapIter, 21 StateMap, StateMapIter,
22 }; 22 };
23 pub mod copy_tracing;
23 mod filepatterns; 24 mod filepatterns;
24 pub mod matchers; 25 pub mod matchers;
25 pub mod revlog; 26 pub mod revlog;
26 pub use revlog::*; 27 pub use revlog::*;
27 pub mod operations; 28 pub mod operations;