1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod adapter;
mod attributes;
mod indexed_crate;

#[cfg(test)]
pub(crate) mod test_util;

mod visibility_tracker;

// Re-export the Crate type so we can deserialize it.
pub use rustdoc_types::Crate;

pub use {
    adapter::RustdocAdapter,
    indexed_crate::{ImportablePath, IndexedCrate},
};