crate-index 0.1.0

A small library for managing a Cargo crate index
Documentation
1
2
3
4
5
6
7
//! This module contains the constituent parts of the [`Index`](crate::Index).
//!
//! In normal usage, it would not be required to use these underlying types.
//! They are exposed here so that can be reused in other crates.

mod tree;
pub use tree::{Builder as TreeBuilder, Tree};