Skip to main content

openbim_bsdd/
lib.rs

1//! Reserved OpenBIM.rs bSDD package scaffold.
2//!
3//! This crate does **not** implement a buildingSMART Data Dictionary API client,
4//! request or response models, authentication, validation, or conformance
5//! behavior. Its current release exists only to reserve the canonical package
6//! name and establish a standalone repository boundary.
7
8#![forbid(unsafe_code)]
9
10/// Machine-readable statement of the package's current capability level.
11pub const PACKAGE_STATUS: &str =
12    "reserved scaffold; no bSDD API client, model, or validation is implemented";