Skip to main content

io_m2dir/
lib.rs

1#![no_std]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![doc = include_str!("../README.md")]
4
5#[macro_use]
6extern crate alloc;
7#[cfg(feature = "client")]
8extern crate std;
9
10#[cfg(feature = "client")]
11pub mod client;
12pub mod coroutine;
13pub mod entry;
14pub mod flag;
15pub mod m2dir;
16pub mod path;
17pub mod store;