mrapids 0.1.7

Your OpenAPI, but executable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! MicroRapid library for programmatic access

pub mod cli;
pub mod collections;
pub mod core;
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;