rust/hg-core/examples/nodemap/index.rs
changeset 47955 e834b79def74
parent 44386 8f7c6656ac79
child 50979 4c5f6e95df84
equal deleted inserted replaced
47954:4afd6cc447b9 47955:e834b79def74
     3 // This software may be used and distributed according to the terms of the
     3 // This software may be used and distributed according to the terms of the
     4 // GNU General Public License version 2 or any later version.
     4 // GNU General Public License version 2 or any later version.
     5 
     5 
     6 //! Minimal `RevlogIndex`, readable from standard Mercurial file format
     6 //! Minimal `RevlogIndex`, readable from standard Mercurial file format
     7 use hg::*;
     7 use hg::*;
     8 use memmap::*;
     8 use memmap2::*;
     9 use std::fs::File;
     9 use std::fs::File;
    10 use std::ops::Deref;
    10 use std::ops::Deref;
    11 use std::path::Path;
    11 use std::path::Path;
    12 use std::slice;
    12 use std::slice;
    13 
    13