mod item_index;
mod item_paths;
pub use item_index::{CrateItemIndex, EagerCrateItemIndex, LazyCrateItemIndex};
pub use item_paths::{CrateItemPaths, EagerCrateItemPaths, LazyCrateItemPaths};
use rustc_hash::FxHashMap;
use rustdoc_types::ExternalCrate;
#[derive(Debug, Clone)]
pub struct CrateData {
pub root_item_id: rustdoc_types::Id,
#[allow(clippy::disallowed_types)]
pub external_crates: FxHashMap<u32, ExternalCrate>,
pub paths: CrateItemPaths,
pub format_version: u32,
pub index: CrateItemIndex,
}