cargo-edit 0.13.1

Cargo commands for modifying a `Cargo.toml` file..
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-set-version"
path = "src/bin/set-version/main.rs"
required-features = ["set-version"]

[[bin]]
name = "cargo-upgrade"
path = "src/bin/upgrade/main.rs"
required-features = ["upgrade"]

[dependencies.anyhow]
version = "1.0"

[dependencies.cargo_metadata]
version = "0.19.1"

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

[dependencies.clap-cargo]
version = "0.15.2"

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

[dependencies.dunce]
version = "1.0"

[dependencies.hex]
version = "0.4.3"

[dependencies.home]
version = "0.5.11"

[dependencies.indexmap]
version = "2"

[dependencies.pathdiff]
version = "0.2"

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

[dependencies.serde]
version = "1.0.217"

[dependencies.serde_derive]
version = "1.0.217"

[dependencies.tame-index]
features = ["sparse", "native-certs", "local"]
version = "0.17"

[dependencies.termcolor]
version = "1.4.1"

[dependencies.toml]
version = "0.8.19"

[dependencies.toml_edit]
version = "0.22.22"

[dependencies.url]
version = "2.5.4"

[dev-dependencies.cargo-test-macro]
version = "0.3"

[dev-dependencies.cargo-test-support]
version = "0.6"

[dev-dependencies.snapbox]
features = ["cmd", "path"]
version = "0.6.21"

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

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

[lib]
name = "cargo_edit"
path = "src/lib.rs"

[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>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "development-tools::cargo-plugins"]
description = "Cargo commands for modifying a `Cargo.toml` file.."
documentation = "https://github.com/killercup/cargo-edit/blob/master/README.md#available-subcommands"
edition = "2021"
homepage = "https://github.com/killercup/cargo-edit"
keywords = ["cargo", "cargo-subcommand", "cli", "dependencies", "crates"]
license = "Apache-2.0 OR MIT"
name = "cargo-edit"
readme = "README.md"
repository = "https://github.com/killercup/cargo-edit"
version = "0.13.1"

[[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 -->
## Unreleased - ReleaseDate
"""
search = "<!-- next-header -->"

[profile.release]
codegen-units = 1
lto = true
panic = "abort"

[[test]]
name = "cargo-set-version"
path = "tests/cargo-set-version/main.rs"

[[test]]
name = "cargo-upgrade"
path = "tests/cargo-upgrade/main.rs"

[[test]]
name = "readme"
path = "tests/readme.rs"