ddgg/lib.rs
1// allow tests to use std
2#![cfg_attr(not(test), no_std)]
3
4extern crate alloc;
5
6mod errors;
7mod gen_vec;
8mod graph;
9mod graph_diff;
10
11pub use errors::*;
12pub use gen_vec::GenVec;
13pub use gen_vec::Index;
14pub use graph::*;
15pub use graph_diff::GraphDiff;
16
17#[cfg(test)]
18mod graph_tests;