cargo-edit 0.4.0

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
[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.4.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]
cargo_metadata = "0.8.1"
env_proxy = "0.3.0"
error-chain = "0.12.1"
failure = "0.1.5"
regex = "1.2.1"
reqwest = "0.9.19"
serde = "1.0.98"
serde_derive = "1.0.98"
serde_json = "1.0.40"
termcolor = "1.0.5"
toml_edit = "0.1.5"
atty = "0.2.13"
structopt = "0.2.18"
dirs = "2.0.2"
git2 = "0.9.2"
hex = "0.3.2"
url = "2.1.0"
toml = "0.5.1"

[dependencies.semver]
features = ["serde"]
version = "0.9.0"

[dev-dependencies]
assert_cli = "0.6.3"
pretty_assertions = "0.6.1"
tempdir = "0.3.7"

[features]
add = []
default = [
    "add",
    "rm",
    "upgrade",
]
rm = []
test-external-apis = []
unstable = []
upgrade = []