Find Cargo.toml by walking up the directory tree
cargo add find-cargo-tomluse find_cargo_toml::find;
use std::path::PathBuf;
fn main() {
for path in find(".", None::<PathBuf>, None) {
println!("Found: {}", path.display());
}
}Published under the Apache-2.0 license.
Made by @UnRUST π
π οΈ auto updated with automd-rs