aam-rs 2.8.0

A Rust implementation of the Abstract Alias Mapping (AAM) framework for aliasing and maping aam files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # aam-rs
//!
//! Re-export facade. All functionality lives in `aam-core` +
//! `aam-derive`. Your `Cargo.toml` only needs `aam-rs`.
//!
//! ```no_run
//! use aam_rs::aaml::AAML;
//!
//! let cfg = AAML::load("config.aam").unwrap();
//! println!("{}", cfg.find_obj("host").unwrap());
//! ```

pub use aam_core::*;
pub use aam_derive::*;