[package]
name = "git-shadow"
version = "0.0.3"
edition = "2024"
description = "Standalone shadow copies of git repos (or parts of them) in a working directory."
license = "MIT OR Apache-2.0"
repository = "https://github.com/andre-a-alves/git-shadow"
readme = "README.md"
keywords = ["git", "cli", "vendor", "shadow"]
categories = ["command-line-utilities"]
rust-version = "1.85"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
dunce = "1.0.5"
serde = { version = "1", features = ["derive"] }
toml = "1"
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "git-shadow"
path = "src/main.rs"