| Crates.io | simple-graph |
| lib.rs | simple-graph |
| version | 0.1.2 |
| created_at | 2022-11-14 20:42:09.098898+00 |
| updated_at | 2025-11-02 10:11:13.81538+00 |
| description | Graph library with ability to serialize/deserialize Trivial Graph Format |
| homepage | |
| repository | https://github.com/StackOverflowExcept1on/simple-graph |
| max_upload_size | |
| id | 715179 |
| size | 57,007 |
Graph library with ability to serialize/deserialize Trivial Graph Format
This library implements structure Graph<V, E> with adjacency list, NOT the adjacency matrix.
This feature allows to optimize memory consumption.
Besides serialize/deserialize library can deal with graph algorithms such as Depth-first search (DFS) and Breadth-first search (BFS). You can see the difference here:
