rust/hg-core/src/lib.rs
changeset 42609 326fdce22fb2
parent 42536 2dcee6497b0b
child 42610 5672bb73f61e
--- a/rust/hg-core/src/lib.rs	Fri Jul 12 11:08:31 2019 +0200
+++ b/rust/hg-core/src/lib.rs	Tue Jul 02 17:15:03 2019 +0200
@@ -2,12 +2,6 @@
 //
 // This software may be used and distributed according to the terms of the
 // GNU General Public License version 2 or any later version.
-extern crate byteorder;
-extern crate memchr;
-#[macro_use]
-extern crate lazy_static;
-extern crate regex;
-
 mod ancestors;
 pub mod dagops;
 pub use ancestors::{AncestorsIterator, LazyAncestors, MissingAncestors};
@@ -50,7 +44,7 @@
     /// Return the two parents of the given `Revision`.
     ///
     /// Each of the parents can be independently `NULL_REVISION`
-    fn parents(&self, Revision) -> Result<[Revision; 2], GraphError>;
+    fn parents(&self, rev: Revision) -> Result<[Revision; 2], GraphError>;
 }
 
 pub type LineNumber = usize;