Skip to main content

s_125/
lib.rs

1//! IHO **S-125** — Marine aids to navigation (AtoN) (placeholder crate).
2//!
3//! S-100 product for **AtoN** information.
4//!
5//! # Status
6//! **v0.0.1** reserves the crates.io name; implementation may follow in later versions.
7
8#![forbid(unsafe_code)]
9
10/// Reserved until normative schema bindings are added.
11#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
12pub struct DevelopmentStub;
13
14#[cfg(test)]
15mod tests {
16    use super::*;
17    #[test]
18    fn smoke() {
19        let _ = DevelopmentStub;
20    }
21}