1//! Commit graph layout — types and lane-assignment algorithm for visual 2//! commit-graph rendering. 3 4pub mod ops; 5pub mod types; 6 7pub use ops::*; 8pub use types::*;