1#![forbid(unsafe_code)]
11#![doc(html_root_url = "https://docs.rs/nido-commit/0.0.0-alpha.0")]
12
13pub struct BrandReservation {
15 pub name: &'static str,
16 pub version: &'static str,
17 pub status: &'static str,
18 pub homepage: &'static str,
19}
20
21pub const fn brand_reservation() -> BrandReservation {
23 BrandReservation {
24 name: "nido-commit",
25 version: "0.0.0-alpha.0",
26 status: "placeholder; real release at >=0.1.0",
27 homepage: "https://securanido.com",
28 }
29}
30
31#[cfg(test)]
32mod tests {
33 use super::*;
34
35 #[test]
36 fn placeholder_metadata_is_stable() {
37 let r = brand_reservation();
38 assert_eq!(r.name, "nido-commit");
39 assert_eq!(r.version, "0.0.0-alpha.0");
40 }
41}