kanban-core 0.7.1

Core traits, errors, and result types for the kanban project management tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod algorithms;
pub mod core;
pub mod dag;
pub mod edge;
pub mod error;
pub mod traits;
pub mod undirected;

pub use core::EdgeStore;
pub use dag::DagGraph;
pub use edge::{Edge, EdgeBase};
pub use error::GraphError;
pub use traits::{Cascadable, Directed, EdgeSet, Graph, GraphNode, Undirected};
pub use undirected::UndirectedGraph;