1 2 3 4 5 6
//! network_graph is a library that provides tools for representing network-style graphs, as well //! as an egui widget for making interactive graphs. pub mod graph; #[cfg(feature = "egui")] pub mod widget;