[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"