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.
21 lines
524 B
TOML
21 lines
524 B
TOML
2 years ago
|
[package]
|
||
|
name = "cargo-vcs"
|
||
|
version = "0.1.0"
|
||
|
description = "Cargo Version Control System helper"
|
||
|
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"]
|
||
|
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
|
||
|
|
||
|
[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"
|