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.
1. Use Cargo from the terminal
bash
cargo add dep_crusher
2. Add the dependency to your Cargo.toml
file
toml
[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) -> Option<Vec<Self>> {
// Get and return the next MyStructs as an option
}
} ```
let ordereddependencies = myStruct.crush(); // OR let ordereddependencies = dep_crusher::crush(myStruct);
// 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.