cargo-edit 0.3.2

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.3.2"
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.6.4"
env_proxy = "0.3.1"
error-chain = "0.12.1"
regex = "1.1.6"
reqwest = "0.9.17"
serde = "1.0.91"
serde_derive = "1.0.91"
serde_json = "1.0.39"
termcolor = "1.0.4"
toml_edit = "0.1.3"
atty = "0.2.11"
structopt = "0.2.15"

[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 = []