Concept Flow - Using external crates
Start Rust Project
Add crate to Cargo.toml
Run cargo build
Import crate in code with use
Call functions/types from crate
Run cargo run to execute
See output using crate features
This flow shows how to add an external crate to a Rust project, import it, and use its features step-by-step.