forked from killercup/cargo-edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (84 loc) · 2.17 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
91
92
93
[package]
authors = [
"Without Boats <lee@libertad.ucsd.edu>",
"Pascal Hertleif <killercup@gmail.com>",
"Sebastian Garrido <sebasgarcep@gmail.com>",
"Jonas Platte <mail@jonasplatte.de>",
"Benjamin Gill <git@bgill.eu>",
"Andronik Ordian <write@reusable.software>",
]
categories = [
"development-tools",
"development-tools::cargo-plugins",
]
description = "This extends Cargo to allow you to add and remove dependencies by modifying your `Cargo.toml` file from the command line. It contains `cargo add`, `cargo rm`, and `cargo upgrade`."
documentation = "https://github.com/killercup/cargo-edit/blob/master/README.md#available-subcommands"
homepage = "https://github.com/killercup/cargo-edit"
keywords = [
"cargo",
"cargo-subcommand",
"cli",
"dependencies",
"crates",
]
license = "Apache-2.0/MIT"
name = "cargo-edit"
readme = "README.md"
repository = "https://github.com/killercup/cargo-edit"
version = "0.7.0"
edition = "2018"
[[bin]]
name = "cargo-add"
path = "src/bin/add/main.rs"
required-features = ["add"]
[[bin]]
name = "cargo-rm"
path = "src/bin/rm/main.rs"
required-features = ["rm"]
[[bin]]
name = "cargo-upgrade"
path = "src/bin/upgrade/main.rs"
required-features = ["upgrade"]
[badges.appveyor]
repository = "killercup/cargo-edit"
[badges.travis-ci]
repository = "killercup/cargo-edit"
[dependencies]
atty = { version = "0.2.14", optional = true }
cargo_metadata = "0.12.0"
dirs-next = "2.0.0"
env_proxy = "0.4.1"
error-chain = "0.12.4"
failure = "0.1.8"
git2 = "0.13.11"
hex = "0.4.2"
regex = "1.3.9"
serde = "1.0.116"
serde_derive = "1.0.116"
serde_json = "1.0.58"
structopt = { version = "0.3.18", optional = true }
subprocess = "0.2.6"
termcolor = "1.1.0"
toml = "0.5.6"
toml_edit = "0.2.0"
url = "2.1.1"
ureq = { version = "1.5.1", default-features = false, features = ["tls", "json", "socks"] }
[dependencies.semver]
features = ["serde"]
version = "0.11.0"
[dev-dependencies]
assert_cli = "0.6.3"
pretty_assertions = "0.6.1"
tempfile = "3.1.0"
[features]
default = [
"add",
"rm",
"upgrade",
]
add = ["cli"]
rm = ["cli"]
upgrade = ["cli"]
cli = ["atty", "structopt"]
test-external-apis = []
vendored-openssl = ["git2/vendored-openssl"]