cargo-expand/Cargo.toml
2022-12-17 10:46:47 -08:00

38 lines
1.3 KiB
TOML

[package]
name = "cargo-expand"
version = "1.0.36"
authors = ["David Tolnay <dtolnay@gmail.com>"]
autotests = false
categories = ["development-tools::cargo-plugins", "development-tools::debugging"]
description = "Wrapper around rustc -Zunpretty=expanded. Shows the result of macro expansion and #[derive] expansion."
documentation = "https://github.com/dtolnay/cargo-expand"
edition = "2021"
keywords = ["cargo", "subcommand", "macros"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/cargo-expand"
[features]
default = ["prettyplease"]
prettyplease = []
[dependencies]
atty = "0.2"
bat = { version = "0.22", default-features = false, features = ["paging", "regex-fancy"] }
cargo-subcommand-metadata = "0.1"
clap = { version = "4", features = ["deprecated", "derive"] }
prettyplease = { version = "0.1.21", features = ["verbatim"] }
proc-macro2 = "1.0"
quote = { version = "1.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
syn = { version = "1.0", default-features = false, features = ["full", "parsing", "printing", "visit-mut"] }
syn-select = "0.2.1"
tempfile = "3.0"
termcolor = "1.0"
toml = "0.5"
toolchain_find = "0.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
members = ["tests"]