-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.03 KB
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
[package]
name = "gitopolis"
version = "0.0.0-git"
edition = "2021"
authors = ["Tim Abell <t@0x5.uk>"]
description = "Manage multiple git repositories - CLI tool - run commands, clone, and organize repos with tags"
homepage = "https://github.com/timabell/gitopolis"
repository = "https://github.com/timabell/gitopolis"
readme = "README.md"
license = "AGPL-3.0-only"
keywords = ["git", "cli", "multi-repo", "microservices"]
categories = ["command-line-utilities", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.54", features = ["derive"] }
env_logger = "0.11.8"
git2 = "0.20.3"
log = "0.4.29"
serde = "1.0.228"
serde_derive = "1.0.228"
toml = "0.9.10"
openssl = { version = "0.10", features = ["vendored"] }
wild = "2.2.1"
[dev-dependencies]
assert_cmd = "2.1"
predicates = "3.1"
tempfile = "3.24.0"
[package.metadata.cargo-machete]
ignored = [
"serde", # Used via serde_derive macro
"openssl", # Required by git2 for SSL support
]