Skip to main content

openbim_openbimrl/
lib.rs

1//! Reserved OpenBIM.rs namespace for the `openbim-openbimrl` package.
2//!
3//! No parser, language implementation, validation behavior, or standards-body
4//! affiliation is provided or implied.
5
6#![forbid(unsafe_code)]
7
8/// The package's deliberately limited status.
9pub const PACKAGE_STATUS: &str =
10    "RESERVED OpenBIM.rs namespace; no authoritative specification or implementation is provided.";
11
12#[cfg(test)]
13mod tests {
14    use super::PACKAGE_STATUS;
15
16    #[test]
17    fn status_is_explicitly_reserved() {
18        assert!(PACKAGE_STATUS.starts_with("RESERVED "));
19    }
20}