1#![no_std] 2extern crate alloc; 3 4/// `error` module contains the definition of the Error struct. 5pub mod error; 6 7mod graph; 8pub use graph::*;