rust/hg-core/src/dirstate/parsers.rs
changeset 42609 326fdce22fb2
parent 42424 d3b5cbe311d9
child 42748 7cae6bc29ff9
--- 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;