mercust_spec_reader/lib.rs
1//! Official Rust implementation for loading mercust objects (manifests, filters, etc.) from language-agnostic representations defined by Mercury.
2mod constants;
3mod manifest;
4mod filter;
5mod tags;
6
7pub use {
8 manifest::manifest_element_from_spec_xml,
9 filter::filter_element_from_spec_xml
10};