stack_arena/
lib.rs

1mod error;
2mod obstack;
3mod simple_obstack;
4mod traits;
5
6pub use error::AllocError;
7pub use obstack::Obstack;
8pub use traits::Allocator;
9
10#[cfg(test)]
11mod tests {
12    use super::*;
13
14    #[test]
15    fn it_works() {
16        let result = 4;
17        assert_eq!(result, 4);
18    }
19}