Starting at a root node, traverse its entire dependency graph and flatten it into a top-to-bottom list. Nodes are a trait implementation, allowing dep_crusher to have generic, widespread use.
There are two easy installation options.
bash
cargo add dep_crusher
Cargo.toml
filetoml
[dependencies]
dep_crusher = "0.1.0"
dep_crusher::dep_node::Node
trait:```rust struct MyStruct { // ... }
impl PartialEq for MyStruct { fn eq(&self, other: &Self) -> bool { // Check equality with, for example, and ID } }
impl depcrusher::depnode::Node for MyStruct { type Id = u64; // Type that implements Eq + Hash;
fn get_id(&self) -> Self::Id {
// Get a unique identifier of MyStruct
}
fn get_next(&self) -> Vec<Self> {
// Get and return the next Vec<MyStruct>
}
} ```
```rust let my_struct = MyStruct { // ... }
let ordereddependencies = mystruct.crush(); // OR let ordereddependencies = depcrusher::crush(my_struct);
// Returns depcrusher::result::Result
Pull requests are very welcome. Please feel free to make this better! For major updates, please open an issue first to discuss what you want to change.
Please make sure to update tests as appropriate.
MIT OR Apache-2.0