find-cargo-toml 1.1.0

Find Cargo.toml by walking up the directory tree
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 3 items with examples
  • Size
  • Source code size: 109.34 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.08 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • betterhyq

🔎 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