cargo-edit-9 0.9.3

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

[[bin]]
name = "cargo-set-version"
path = "src/bin/set-version/main.rs"
required-features = ["set-version"]
[dependencies.anyhow]
version = "1.0"

[dependencies.cargo_metadata]
version = "0.14.0"

[dependencies.clap]
features = ["derive", "wrap_help"]
optional = true
version = "3.1"

[dependencies.concolor-control]
default-features = false
version = "0.0.7"

[dependencies.crates-index]
version = "0.19.7"

[dependencies.dirs-next]
version = "2.0.0"

[dependencies.dunce]
version = "1.0"

[dependencies.env_proxy]
version = "0.4.1"

[dependencies.git2]
version = "0.16.1"

[dependencies.hex]
version = "0.4.2"

[dependencies.indexmap]
version = "1"

[dependencies.pathdiff]
version = "0.2"

[dependencies.regex]
version = "1.7"

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

[dependencies.serde]
version = "1.0.116"

[dependencies.serde_derive]
version = "1.0.116"

[dependencies.serde_json]
version = "1.0.58"

[dependencies.subprocess]
version = "0.2.6"

[dependencies.termcolor]
version = "1.1.0"

[dependencies.toml_edit]
features = ["easy"]
version = "0.13.3"

[dependencies.url]
version = "2.3.1"
[dev-dependencies.assert_cmd]
features = ["color-auto"]
version = "2.0.2"

[dev-dependencies.assert_fs]
features = ["color-auto"]
version = "1.0.6"

[dev-dependencies.predicates]
features = ["color-auto"]
version = "2.0.3"

[dev-dependencies.trycmd]
version = "0.13.1"

[features]
add = ["cli"]
cli = ["color", "clap"]
color = ["concolor-control/auto"]
default = ["add", "rm", "upgrade", "set-version", "vendored-libgit2"]
rm = ["cli"]
set-version = ["cli"]
test-external-apis = []
upgrade = ["cli"]
vendored-libgit2 = ["git2/vendored-libgit2"]
vendored-openssl = ["git2/vendored-openssl"]

[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/pinkforest/cargo-edit/blob/master/README.md#available-subcommands"
edition = "2021"
homepage = "https://github.com/pinkforest/cargo-edit-9"
keywords = ["cargo", "cargo-subcommand", "cli", "dependencies", "crates"]
license = "Apache-2.0 OR MIT"
name = "cargo-edit-9"
readme = "README.md"
repository = "https://github.com/pinkforest/cargo-edit"
resolver = "2"
version = "0.9.3"
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
min = 1
replace = "{{version}}"
search = "Unreleased"

[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
min = 1
replace = "{{date}}"
search = "ReleaseDate"

[[package.metadata.release.pre-release-replacements]]
exactly = 1
file = "CHANGELOG.md"
replace = "<!-- next-header -->\n## Unreleased - ReleaseDate\n"
search = "<!-- next-header -->"
[target."cfg(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\"))".dependencies.ureq]
default-features = false
features = ["tls", "json", "socks", "socks-proxy"]
version = "2.4.0"
[target."cfg(not(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\")))".dependencies.native-tls]
version = "^0.2"

[target."cfg(not(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\")))".dependencies.ureq]
default-features = false
features = ["native-tls", "json", "socks", "socks-proxy"]
version = "2.4.0"