stak_file/lib.rs
1//! File systems.
2
3#![cfg_attr(all(doc, not(doctest)), feature(doc_auto_cfg))]
4#![no_std]
5
6#[cfg(test)]
7extern crate alloc;
8#[cfg(any(feature = "std", test))]
9extern crate std;
10
11mod file_system;
12mod primitive_set;
13
14pub use file_system::*;
15pub use primitive_set::{FilePrimitiveSet, Primitive, PrimitiveError};