Skip to main content

comp_state/
lib.rs

1#![feature(track_caller)]
2pub mod list;
3pub mod prelude;
4pub mod unmount;
5
6mod helpers;
7mod state_access;
8mod state_functions;
9mod store;
10pub use prelude::*;
11// Re export topo so that there will not be any conflicting
12// topo versions used.
13
14//experimental
15
16#[cfg(test)]
17mod tests {
18    #[test]
19    fn it_works() {
20        assert_eq!(2 + 3, 4);
21    }
22}