Cargo Features
[dependencies]
graph-algorithms-rs = { version = "0.1.7", default-features = false, features = ["bellman_ford", "dijkstra", "floyd_warshall"] }
- default = bellman_ford, dijkstra, floyd_warshall
-
These default features are set whenever
graph-algorithms-rs
is added without
somewhere in the dependency tree.default-features = false - bellman_ford default
-
Affects
graph-algorithms-rs::bellman_ford
… - dijkstra default
-
Affects
graph-algorithms-rs::dijkstra
… - floyd_warshall default
-
Affects
graph-algorithms-rs::floyd_warshall
…