Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Latest commit

 

History

History
61 lines (43 loc) · 1.56 KB

File metadata and controls

61 lines (43 loc) · 1.56 KB

🔎 find-cargo-toml

Crates.io Version Crates.io Total Downloads docs.rs GitHub commit activity GitHub Repo stars

Find Cargo.toml by walking up the directory tree

Full documentation →

Quick start

cargo add find-cargo-toml

Usage

use find_cargo_toml::find;
use std::path::PathBuf;

fn main() {
    for path in find(".", None::<PathBuf>, None) {
        println!("Found: {}", path.display());
    }
}

License

Published under the Apache-2.0 license. Made by @UnRUST 💛


🛠️ auto updated with automd-rs