cargo-extract 0.3.2

Cargo subcommand to extract information from Cargo.toml files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "cargo-extract"
version = "0.3.2"
build = "build.rs"
exclude = [".github/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo subcommand to extract information from Cargo.toml files"
readme = "README.md"
categories = [
    "command-line-utilities",
    "development-tools::build-utils",
    "development-tools::cargo-plugins",
]
license = "MIT"
repository = "https://github.com/LimeEng/cargo-extract/"

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

[[bin]]
name = "cargo-extract"
path = "src/main.rs"

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

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

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

[[bench]]
name = "extract"
path = "benches/extract.rs"
harness = false

[dependencies.clap]
version = "4.5"
features = ["cargo"]

[dependencies.toml]
version = "1.0"
features = ["preserve_order"]

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.indoc]
version = "2.0"