repoverse 0.1.7

Multi-repo workspace tool: keep many git repos in sync and roll changes up across dependency boundaries
[package]
name = "repoverse"
version = "0.1.7"
edition = "2021"
description = "Multi-repo workspace tool: keep many git repos in sync and roll changes up across dependency boundaries"
license = "Apache-2.0"
repository = "https://github.com/madhavajay/repoverse"
homepage = "https://github.com/madhavajay/repoverse"
readme = "../README.md"
keywords = ["git", "workspace", "monorepo", "cli"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "rv"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
anyhow = "1"
thiserror = "2"
rayon = "1"

[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"

[profile.release]
strip = true
lto = "thin"