rust/hg-core/src/dirstate_tree.rs
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 04 Jul 2021 02:28:08 +0200
changeset 47535 6025353c9c55
parent 47380 bd88b6bfd8da
child 47982 4afd6cc447b9
permissions -rw-r--r--
dirstate: no longer pass `oldstate` to the `dropfile` The `oldstate` value come literally from `_map` so we don't need to pass tha information along. Differential Revision: https://phab.mercurial-scm.org/D10978
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47109
473abf4728bf dirstate-tree: Empty shell for a second Rust DirstateMap implementation
Simon Sapin <simon.sapin@octobus.net>
parents: 47107
diff changeset
     1
pub mod dirstate_map;
47107
787ff5d21bcd dirstate-tree: Make Rust DirstateMap bindings go through a trait object
Simon Sapin <simon.sapin@octobus.net>
parents:
diff changeset
     2
pub mod dispatch;
47291
1766130fe9ba dirstate-v2: Change the on-disk format when the requirement is enabled
Simon Sapin <simon.sapin@octobus.net>
parents: 47126
diff changeset
     3
pub mod on_disk;
47110
3c11c24b82b6 dirstate-tree: Add `WithBasename` wrapper for `HgPath`
Simon Sapin <simon.sapin@octobus.net>
parents: 47109
diff changeset
     4
pub mod path_with_basename;
47380
bd88b6bfd8da rhg: Add support for dirstate-v2
Simon Sapin <simon.sapin@octobus.net>
parents: 47291
diff changeset
     5
pub mod status;