graphrust_core/lib.rs
1//! # GraphRust Core
2//!
3//! Core graph data structures optimized for cache locality and FFI compatibility.
4//! Provides efficient representations for both directed and undirected graphs.
5
6pub mod graph;
7pub mod types;
8
9pub use graph::{Graph, GraphBuilder};
10pub use types::{EdgeWeight, NodeId, NodeWeight};