rust/hg-core/src/dirstate/dirstate_tree.rs
author Simon Sapin <simon.sapin@octobus.net>
Wed, 17 Feb 2021 12:06:56 +0100
changeset 46594 f88e8ae0aa8f
parent 45562 b51167d70f5a
permissions -rw-r--r--
rust: Rewrite dirstate parsing usin the `bytes-cast` crate Differential Revision: https://phab.mercurial-scm.org/D10005

// dirstate_tree.rs
//
// Copyright 2020, Raphaël Gomès <rgomes@octobus.net>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.

//! Special-case radix tree that matches a filesystem hierarchy for use in the
//! dirstate.
//! It has not been optimized at all yet.

pub mod iter;
pub mod node;
pub mod tree;