git-global 0.7.0

Keep track of all the git repositories on your machine.
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"
name = "git-global"
version = "0.7.0"
authors = ["Eric Petersen <eric@ericpetersen.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "git-global"
description = "Keep track of all the git repositories on your machine."
homepage = "https://github.com/peap/git-global"
documentation = "https://docs.rs/git-global"
readme = "README.md"
keywords = ["git"]
categories = [
    "command-line-utilities",
    "development-tools",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/peap/git-global"

[features]
manpage = ["man"]

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

[[bin]]
name = "generate-manpage"
path = "src/generate_manpage.rs"
doc = false
required-features = ["manpage"]

[[bin]]
name = "git-global"
path = "src/main.rs"
doc = false

[[test]]
name = "cli"
path = "tests/cli.rs"

[[test]]
name = "repo"
path = "tests/repo.rs"

[[test]]
name = "subcommands"
path = "tests/subcommands.rs"

[[test]]
name = "utils"
path = "tests/utils.rs"

[dependencies.clap]
version = "4"
features = ["cargo"]

[dependencies.directories]
version = "6"

[dependencies.git2]
version = "0.20"
default-features = false

[dependencies.man]
version = "0.3"
optional = true

[dependencies.num_cpus]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.termsize]
version = "0.1"

[dependencies.walkdir]
version = "2"

[dev-dependencies.regex]
version = "1"

[dev-dependencies.tempfile]
version = "3"