git-walk 0.0.1

Read-only discovery of git repositories: walk a file tree and rank the checkouts it finds with cheap git metadata, without invoking git.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "git-walk"
version = "0.0.1"
authors = ["Geoffrey Guéret <geoffrey@gueret.dev>"]
build = false
include = [
    "/src",
    "/Cargo.toml",
    "/README.md",
    "/LICENSE-APACHE",
    "/LICENSE-MIT",
    "/CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read-only discovery of git repositories: walk a file tree and rank the checkouts it finds with cheap git metadata, without invoking git."
homepage = "https://github.com/ggueret/git-walk"
documentation = "https://docs.rs/git-walk"
readme = "README.md"
keywords = [
    "git",
    "repository",
    "discovery",
    "worktree",
    "monorepo",
]
categories = [
    "command-line-utilities",
    "development-tools",
    "filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ggueret/git-walk"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "git_walk"
path = "src/lib.rs"

[[bin]]
name = "git-walk"
path = "src/main.rs"

[dependencies]

[dev-dependencies.insta]
version = "1.48.0"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"