#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/nido-commit/0.0.0-alpha.0")]
pub struct BrandReservation {
pub name: &'static str,
pub version: &'static str,
pub status: &'static str,
pub homepage: &'static str,
}
pub const fn brand_reservation() -> BrandReservation {
BrandReservation {
name: "nido-commit",
version: "0.0.0-alpha.0",
status: "placeholder; real release at >=0.1.0",
homepage: "https://securanido.com",
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn placeholder_metadata_is_stable() {
let r = brand_reservation();
assert_eq!(r.name, "nido-commit");
assert_eq!(r.version, "0.0.0-alpha.0");
}
}