rsmultigit 0.1.13

Manage multiple git repositories at once
[package]
name = "rsmultigit"
version = "0.1.13"
edition = "2024"
authors = ["Mark Veltzer <mark.veltzer@gmail.com>"]
description = "Manage multiple git repositories at once"
license = "MIT"
repository = "https://github.com/veltzer/rsmultigit"

[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4.5"
# vendored-openssl unconditionally: the canonical ci.yml builds every target
# with a plain `cargo build --release`, and the aarch64 cross build cannot
# link the runner's x86_64 libssl.
git2 = { version = "0.20", features = ["vendored-openssl"] }
glob = "0.3"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
toml = "0.9"
sha2 = "0.10"
shellexpand = "3"
similar = "3"

[dev-dependencies]
tempfile = "3"
serial_test = "3"

[profile.release]
strip = true
lto = true