mdx-rust 0.1.1

Rust-native optimizer for LLM agents CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Public documentation facade for the `mdx-rust` CLI crate.
//!
//! Most reusable APIs live in [`mdx_rust_core`] and [`mdx_rust_analysis`].
//! This crate primarily ships the `mdx-rust` binary, but it also exposes those
//! lower-level crates so docs.rs has a stable library target to document.
//!
//! Install the CLI with:
//!
//! ```text
//! cargo install mdx-rust
//! ```

pub use mdx_rust_analysis as analysis;
pub use mdx_rust_core as core;