[go: up one dir, main page]

cargo-edit 0.3.0-beta.1

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 = "http://killercup.github.io/cargo-edit/"
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.0-beta.1"

[[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.3.0"
docopt = "0.8"
env_proxy = "0.2"
error-chain = "0.11.0"
pad = "0.1"
regex = "0.2"
reqwest = "0.7.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
termcolor = "0.3"
toml_edit = "0.1.1"

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

[dev-dependencies]
assert_cli = "0.4.0"
pretty_assertions = "0.2.1"
tempdir = "0.3"

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