66 lines
1.1 KiB
TOML
66 lines
1.1 KiB
TOML
[package]
|
|
name = "git-repo-manager"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
authors = [
|
|
"Hannes Körber <hannes@hkoerber.de>",
|
|
]
|
|
description = """
|
|
Manage multiple git repositories.
|
|
You configure the git repositories in a file, the program does the rest!
|
|
"""
|
|
|
|
keywords = ["git"]
|
|
categories = [
|
|
"command-line-utilities",
|
|
"development-tools",
|
|
]
|
|
|
|
homepage = "https://github.com/hakoerber/git-repo-manager"
|
|
repository = "https://github.com/hakoerber/git-repo-manager"
|
|
|
|
readme = "README.md"
|
|
|
|
# Required for `std::path::Path::is_symlink()`. Will be released with 1.57.
|
|
rust-version = "1.57"
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
[lib]
|
|
name = "grm"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "grm"
|
|
path = "src/grm/main.rs"
|
|
|
|
[dependencies]
|
|
|
|
[dependencies.toml]
|
|
version = "=0.5.8"
|
|
|
|
[dependencies.serde]
|
|
version = "=1.0.132"
|
|
features = ["derive"]
|
|
|
|
[dependencies.git2]
|
|
version = "=0.13.25"
|
|
|
|
[dependencies.shellexpand]
|
|
version = "=2.1.0"
|
|
|
|
[dependencies.clap]
|
|
version = "=3.0.0-beta.5"
|
|
|
|
[dependencies.console]
|
|
version = "=0.15.0"
|
|
|
|
[dependencies.regex]
|
|
version = "=1.5.4"
|
|
|
|
[dependencies.comfy-table]
|
|
version = "=5.0.0"
|
|
|
|
[dev-dependencies.tempdir]
|
|
version = "=0.3.7"
|