-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCargo.toml
33 lines (30 loc) · 986 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "cargo-expand"
version = "0.4.12"
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Wrapper around rustc --pretty=expanded. Shows the result of macro expansion and #[derive] expansion."
repository = "https://github.com/dtolnay/cargo-expand"
documentation = "https://github.com/dtolnay/cargo-expand"
keywords = ["cargo", "subcommand", "expanded"]
categories = ["development-tools::cargo-plugins", "development-tools::debugging"]
edition = "2018"
readme = "README.md"
[dependencies]
atty = "0.2"
prettyprint = "0.6"
proc-macro2 = "0.4"
quote = { version = "0.6", default-features = false }
serde = { version = "1.0", features = ["derive"] }
structopt = "0.2"
syn-select = "0.1.4"
tempfile = "3.0"
termcolor = "1.0"
toml = "0.5"
toolchain_find = "0.1"
[dependencies.syn]
version = "0.15"
default-features = false
features = ["full", "parsing", "printing", "visit-mut"]
[badges]
travis-ci = { repository = "dtolnay/cargo-expand" }