kshana 0.24.0

Open, reproducible PNT-resilience simulator with quantum-sensor performance models
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: AGPL-3.0-only
//! Assurance primitives: provenance, uncertainty, and external-oracle attestation.
//!
//! These types are deliberately `no_std`-friendly in spirit: they use
//! [`std::collections::BTreeMap`] and [`std::borrow::Cow`] (never `HashMap`),
//! accept timestamps as caller-supplied fields (never call [`std::time::SystemTime::now`]
//! internally), and compile for `wasm32-unknown-unknown`.

pub mod oracle;
pub mod provenance;
pub mod uncertainty;