mrapids 0.1.31

Your OpenAPI, but executable
Documentation
//! MicroRapid library for programmatic access

pub mod cli;
pub mod collections;
pub mod commands;
pub mod core;
pub mod models;
pub mod utils;

// Make parser public for the agent
pub use crate::core::parser;

// Python bindings module
#[cfg(feature = "python")]
pub mod python_lib;

// WASM bindings module
#[cfg(feature = "wasm")]
pub mod wasm_lib;