aral_runtime_noop/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docs_rs, feature(doc_auto_cfg))]
3
4macro_rules! no_runtime_specified {
5    () => {
6        panic!("no runtime specified, please enable one of `runtime-*` features");
7    };
8}
9
10pub mod fs;
11pub mod io;
12pub mod net;
13pub mod os;
14pub mod task;