zahirscan 0.3.6

Token-efficient content compression for AI analysis using probabilistic template mining
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Configuration file metadata structures (INI, TOML, XML, YAML)

pub mod ini;
pub mod toml;
pub mod xml;
pub mod yaml;

pub use ini::{IniMetadata, IniTypeInfo};
pub use toml::{TomlMetadata, TomlTypeInfo};
pub use xml::{XmlMetadata, XmlTypeInfo};
pub use yaml::{YamlMetadata, YamlTypeInfo};