embedded-secure-fs/src/lib.rs

9 lines
84 B
Rust

#![cfg_attr(not(test), no_std)]
mod key;
pub use key::*;
#[cfg(test)]
mod tests;