utils_box_config/
lib.rs

1//! # Summary
2//! A toolbox library that holds a useful collection of small unitilies written in Rust that make our life easier when writting Rust applications.
3//!
4//! # Utilities provided:
5//!
6//! ## Mathematics
7//! A collection of useful methematic methods used in various DSP and other applications
8//!
9//! ## Config
10//! Manipulate INI-style configuration files by checking for changes, updates etc
11//!
12//! Mininal Example:
13//! ```ignore
14//!     let mut config_changes = ini_compare(
15//!         &old_config_path.to_path_buf(),
16//!         &new_config_path.to_path_buf(),
17//!     )
18//!     .unwrap();
19//!
20//!    println!("{:#?}", config_changes);
21//!
22//! ```
23//!
24
25pub mod config;