trustfall_rustdoc_adapter/
lib.rs

1mod adapter;
2mod attributes;
3mod exported_name;
4mod hashtables;
5mod indexed_crate;
6mod item_flags;
7mod sealed_trait;
8mod visibility_tracker;
9
10#[cfg(test)]
11pub(crate) mod test_util;
12
13// Re-export the Crate type so we can deserialize it.
14pub use rustdoc_types::Crate;
15
16// Re-export `cargo_metadata` since its types are in our public API.
17pub use cargo_metadata;
18
19pub use {
20    adapter::RustdocAdapter,
21    indexed_crate::{ImportablePath, IndexedCrate, PackageIndex, PackageStorage},
22};