1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// allow tests to use std
#![cfg_attr(not(test), no_std)]

extern crate alloc;

mod errors;
mod gen_vec;
mod graph;
mod graph_diff;

pub use errors::*;
pub use gen_vec::GenVec;
pub use gen_vec::Index;
pub use graph::*;
pub use graph_diff::GraphDiff;

#[cfg(test)]
mod graph_tests;