1//! This crate provides a library for analyzing Rust code.
 2//!
 3//! .. tip:: We can now integrate its documentation with Sphinx!
 4//!
 5//! .. req:: Analyze a rust package
 6//!     :id: RUST002
 7//!     :tags: rust
 8//!     :links: RUST003, RUST004, RUST005, RUST006
 9//!
10//!     We need to be able to analyze a rust package and extract the necessary information from it.
11pub mod analyze;
12pub mod data_model;