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