diff rust/hg-core/src/dirstate/entry.rs @ 52334:db065b33fa56

rust-dirstate: merge `dirstate_tree` module into `dirstate` The historical reasonning for `dirstate_tree` existing in the first place is that a new approach was needed for the tree-like dirstate and it was easier to start somewhat fresh. Now that the former dirstate is (long) gone, we can merge those two modules to avoid the confusion that even the module creators sometimes get.
author Rapha?l Gom?s <rgomes@octobus.net>
date Mon, 04 Nov 2024 11:00:58 +0100
parents 0529e1a468dd
children
line wrap: on
line diff
--- a/rust/hg-core/src/dirstate/entry.rs	Mon Nov 04 10:38:17 2024 +0100
+++ b/rust/hg-core/src/dirstate/entry.rs	Mon Nov 04 11:00:58 2024 +0100
@@ -1,4 +1,4 @@
-use crate::dirstate_tree::on_disk::DirstateV2ParseError;
+use crate::dirstate::on_disk::DirstateV2ParseError;
 use crate::errors::HgError;
 use bitflags::bitflags;
 use std::fs;