mdx_rust/lib.rs
1//! Public documentation facade for the `mdx-rust` CLI crate.
2//!
3//! Most reusable APIs live in [`mdx_rust_core`] and [`mdx_rust_analysis`].
4//! This crate primarily ships the `mdx-rust` binary, but it also exposes those
5//! lower-level crates so docs.rs has a stable library target to document.
6//!
7//! Install the CLI with:
8//!
9//! ```text
10//! cargo install mdx-rust
11//! ```
12//!
13//! ## Stability contract
14//!
15//! The CLI is the supported product surface for `0.2.x`. The re-exported
16//! library crates are available for inspection and experiments, but their APIs
17//! remain unstable before `1.0`.
18
19pub use mdx_rust_analysis as analysis;
20pub use mdx_rust_core as core;