forked from hakoerber/git-repo-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (65 loc) · 1.42 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "git-repo-manager"
version = "0.7.16"
edition = "2021"
authors = [
"Hannes Körber <[email protected]>",
]
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"
rust-version = "1.70"
license = "GPL-3.0-only"
[profile.e2e-tests]
inherits = "dev"
[lib]
name = "grm"
path = "src/lib.rs"
[[bin]]
name = "grm"
path = "src/grm/main.rs"
[dependencies.toml]
version = "=0.8.12"
[dependencies.serde]
version = "=1.0.199"
features = ["derive"]
[dependencies.git2]
version = "=0.18.3"
[dependencies.shellexpand]
version = "=3.1.0"
[dependencies.clap]
version = "=4.4.18"
features = ["derive", "cargo"]
[dependencies.console]
version = "=0.15.8"
[dependencies.regex]
version = "=1.10.4"
[dependencies.comfy-table]
version = "=7.1.1"
[dependencies.serde_yaml]
version = "=0.9.34"
[dependencies.serde_json]
version = "=1.0.116"
[dependencies.ureq]
version = "=2.9.7"
features = ["json"]
[dependencies.parse_link_header]
version = "=0.3.3"
[dependencies.url-escape]
version = "=0.1.1"
[dev-dependencies.outdir-tempdir]
version = "=0.2.0"
[features]
static-build = [
"git2/vendored-openssl",
"git2/vendored-libgit2",
]