demo_swarm/lib.rs
1//! Reserved package spelling for the existing DemoSwarm project.
2//!
3//! The canonical future installer crate is `demoswarm`.
4//!
5//! This `0.0.1` crate reserves the repository-style `demo-swarm` spelling and
6//! does not expose the production installer.
7
8/// Returns the current crates.io package status.
9#[must_use]
10pub const fn status() -> &'static str {
11 "demo-swarm crates.io reservation"
12}
13
14#[cfg(test)]
15mod tests {
16 use super::*;
17
18 #[test]
19 fn status_identifies_reservation_package() {
20 assert_eq!(status(), "demo-swarm crates.io reservation");
21 }
22}