diff -r d8ac62374943 -r cd8ca38fccff rust/hg-core/src/dirstate.rs --- a/rust/hg-core/src/dirstate.rs Fri Apr 30 18:24:54 2021 +0200 +++ b/rust/hg-core/src/dirstate.rs Fri Apr 30 19:57:46 2021 +0200 @@ -7,7 +7,8 @@ use crate::errors::HgError; use crate::revlog::Node; -use crate::{utils::hg_path::HgPathBuf, FastHashMap}; +use crate::utils::hg_path::{HgPath, HgPathBuf}; +use crate::FastHashMap; use bytes_cast::{unaligned, BytesCast}; use std::convert::TryFrom; @@ -76,11 +77,11 @@ pub type StateMap = FastHashMap; pub type StateMapIter<'a> = - Box + Send + 'a>; + Box + Send + 'a>; pub type CopyMap = FastHashMap; pub type CopyMapIter<'a> = - Box + Send + 'a>; + Box + Send + 'a>; #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub enum EntryState {