-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
90 lines (81 loc) · 2.8 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
90
[package]
name = "cargo-update"
description = "A cargo subcommand for checking and applying updates to installed executables"
documentation = "https://rawcdn.githack.com/nabijaczleweli/cargo-update/doc/cargo_update/index.html"
repository = "https://github.com/nabijaczleweli/cargo-update"
readme = "README.md"
keywords = ["cargo", "update", "plugin", "subcommand"]
categories = ["development-tools::cargo-plugins"]
license = "MIT"
build = "build.rs"
# Remember to also update in appveyor.yml
version = "16.0.0"
# Remember to also update in man/*.md
authors = ["наб <[email protected]>",
"Yann Simon <[email protected]>",
"ven <[email protected]>",
"Cat Plus Plus <[email protected]>",
"Liigo <[email protected]>",
"azyobuzin <[email protected]>",
"Tatsuyuki Ishi <[email protected]>",
"Tom Prince <[email protected]>",
"Mateusz Mikuła <[email protected]>",
"sinkuu <[email protected]>",
"Alex Burka <[email protected]>",
"Matthias Krüger <[email protected]>",
"Daniel Holbert <[email protected]>",
"Jonas Bushart <[email protected]>",
"Harrison Metzger <[email protected]>",
"Benjamin Bannier <[email protected]>",
"Dimitris Apostolou <[email protected]>",
"Corbin Uselton <[email protected]>",
"QuarticCat <[email protected]>",
"Artur Sinila <[email protected]>",
"qthree <[email protected]>",
"tranzystorekk <[email protected]>",
"Paul Barker <[email protected]>",
"Benoît CORTIER <[email protected]>",
"Biswapriyo Nath <[email protected]>",
"Shiraz <[email protected]>",
"Victor Song <[email protected]>",
"chrisalcantara <[email protected]>",
"Utkarsh Gupta <[email protected]>",
"nevsal"]
exclude = ["*.enc"]
[dependencies]
json-deserializer = "0.4"
serde_derive = "1.0"
array_tool = "1.0"
tabwriter = "1.2"
serde = "1.0"
git2 = "0.19"
home = "0.5"
toml = "0.8"
hex = "0.4"
url = "2.3"
[dependencies.semver]
version = "1.0"
features = ["serde"]
[dependencies.clap]
version = "3.2"
features = ["cargo", "env", "wrap_help"]
[dependencies.curl]
version = "0.4"
features = ["http2"]
[build-dependencies]
embed-resource = "2.4"
[features]
default = []
vendored-openssl = ["git2/vendored-openssl", "curl/static-ssl"]
vendored-libgit2 = ["git2/vendored-libgit2"]
vendored-libcurl = ["curl/static-curl"]
[[bin]]
name = "cargo-install-update"
path = "src/main.rs"
test = false
doc = false
[[bin]]
name = "cargo-install-update-config"
path = "src/main-config.rs"
test = false
doc = false