mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-01 20:07:37 +03:00
47 lines
1.6 KiB
TOML
47 lines
1.6 KiB
TOML
[package]
|
|
name = "cargo-expand"
|
|
version = "1.0.104"
|
|
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"
|
|
rust-version = "1.81"
|
|
|
|
[features]
|
|
default = ["prettyplease"]
|
|
prettyplease = []
|
|
|
|
[dependencies]
|
|
bat = { version = "0.25", default-features = false, features = ["paging", "regex-fancy"] }
|
|
cargo-subcommand-metadata = "0.1"
|
|
clap = { version = "4", features = ["deprecated", "derive"] }
|
|
clap-cargo = "0.15"
|
|
console = "0.15"
|
|
fs-err = "3"
|
|
home = "0.5"
|
|
prettyplease = { version = "0.2.31", features = ["verbatim"] }
|
|
proc-macro2 = "1.0.80"
|
|
quote = { version = "1.0.35", default-features = false }
|
|
semver = "1"
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
|
shlex = "1.3"
|
|
syn = { version = "2.0.85", default-features = false, features = ["clone-impls", "fold", "full", "parsing", "printing", "visit-mut"] }
|
|
syn-select = "0.3"
|
|
tempfile = "3.0"
|
|
termcolor = "1.0"
|
|
toml = "0.8"
|
|
toolchain_find = "0.4"
|
|
|
|
[target.'cfg(all(windows, not(target_vendor = "uwp")))'.dependencies]
|
|
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System_Com", "Win32_UI_Shell"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[workspace]
|
|
members = ["tests"]
|