You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[package]
|
|
|
|
name = "cargo-vcs"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Cargo workspace helper for Version Control System project management"
|
|
|
|
edition = "2021"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
authors = ["Aleš Katona <ales@katona.me>"]
|
|
|
|
rust-version = "1.59"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["cargo", "git", "versioning", "workspace", "vcs"]
|
|
|
|
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
|
|
|
|
repository = "https://codeberg.org/almindor/cargo-vcs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "3.2", features = ["derive"] }
|
|
|
|
crossterm = "0.24"
|
|
|
|
git2 = "0.14"
|
|
|
|
machine-uid = "0.2"
|
|
|
|
semver = "1.0"
|
|
|
|
termtree = "0.4"
|
|
|
|
toml = "0.5"
|