-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 831 Bytes
/
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
[package]
name = "git-mirror"
version = "0.2.0"
authors = ["Bond_009 <[email protected]>"]
edition = "2021"
description = "git-mirror is a command-line program to keep local git mirrors up to date with their origin."
[dependencies.toml]
version = "^0.8"
default-features = false
features = ["parse"]
[dependencies.clap]
version = "^4.5"
default-features = false
features = [
"cargo",
"color",
"help",
"std",
"string",
"usage",
"wrap_help"
]
[dependencies.git2]
version = "^0.18"
default-features = false
features = ["https"]
[dependencies.git2_credentials]
version = "^0.13"
optional = true
default-features = false
[dependencies.serde]
version = "^1.0"
default-features = false
features = ["derive"]
[features]
default = []
ssh = ["git2/ssh", "git2_credentials"]
[profile.release]
lto = true