stak_file/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! File systems.

#![cfg_attr(all(doc, not(doctest)), feature(doc_auto_cfg))]
#![no_std]

#[cfg(test)]
extern crate alloc;
#[cfg(any(feature = "std", test))]
extern crate std;

mod file_system;
mod primitive_set;

pub use file_system::*;
pub use primitive_set::{FilePrimitiveSet, Primitive};