s_130/lib.rs
1//! IHO **S-130** — Polygonal demarcations of global sea areas (placeholder crate).
2//!
3//! S-100 product for global sea-area demarcations.
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}