rust-igraph 0.0.1-alpha.2

Pure-Rust port of the igraph network analysis library (alpha — Phase 1 complete).
Documentation
1
2
3
4
5
6
//! File I/O for graphs. Phase 0 only ships `edgelist`.

// `pub(crate)` to keep rustdoc focused on the function re-export.
pub(crate) mod edgelist;

pub use edgelist::read_edgelist;