--- a/rust/hg-core/src/dirstate/parsers.rs Fri Jul 12 11:08:31 2019 +0200
+++ b/rust/hg-core/src/dirstate/parsers.rs Tue Jul 02 17:15:03 2019 +0200
@@ -3,13 +3,13 @@
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
+use crate::{
+ CopyVec, CopyVecEntry, DirstateEntry, DirstatePackError, DirstateParents,
+ DirstateParseError, DirstateVec,
+};
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use std::collections::HashMap;
use std::io::Cursor;
-use {
- CopyVec, CopyVecEntry, DirstateEntry, DirstatePackError, DirstateParents,
- DirstateParseError, DirstateVec,
-};
/// Parents are stored in the dirstate as byte hashes.
const PARENT_SIZE: usize = 20;