graph-api-simplegraph 0.2.2

A simple, efficient graph implementation for the graph-api ecosystem with support for indexing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod graph;
mod id;
mod index;
mod tombstone_vec;

pub use graph::SimpleGraph;
pub use id::EdgeId;
pub use id::VertexId;
#[cfg(test)]
mod test {
    use crate::SimpleGraph;
    use graph_api_test::test_suite;

    test_suite!(SimpleGraph::new());
}