mlang_rs/
lib.rs

1//! `mlang` is a document type definition language, originally developed for the contruction of `vglang`.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5#[cfg(feature = "lang")]
6#[cfg_attr(docsrs, doc(cfg(feature = "lang")))]
7pub mod lang;
8
9#[cfg(feature = "rt")]
10#[cfg_attr(docsrs, doc(cfg(feature = "rt")))]
11pub mod rt;