stfx 0.1.0

Sovereign Trust Framework: top-level crate wrapping stfx-crypto for initial release
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use stfx_crypto as crypto;

/// Returns the crate name to verify linkage works.
pub fn name() -> &'static str {
    "stfx"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn can_call_crypto() {
        // Minimal smoke test: ensure the crypto crate is linked.
        assert_eq!(name(), "stfx");
        // If stfx-crypto exposes symbols later, invoke here.
    }
}