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

un-rust/find-cargo-toml

πŸ”Ž 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

About

πŸ”Ž Find Cargo.toml by walking up the directory tree

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Contributors

Generated from un-rust/template