-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
40 lines (38 loc) · 929 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
34
35
36
37
38
39
40
[package]
authors = [
"Matthias Endler <[email protected]>",
]
categories = [
"development-tools",
"development-tools::cargo-plugins",
]
description = "This extends Cargo to allow you to desugar your Rust code and see what happens behind the curtains."
documentation = "https://github.com/mre/cargo-inspect/blob/master/README.md"
edition = "2018"
homepage = "https://github.com/mre/cargo-inspect"
keywords = [
"cargo",
"cargo-subcommand",
"cli",
"unpretty",
"inspect",
]
license = "Apache-2.0/MIT"
name = "cargo-inspect"
readme = "README.md"
repository = "https://github.com/mre/cargo-inspect"
version = "0.10.3"
[[bin]]
name = "cargo-inspect"
path = "src/bin/inspect/main.rs"
[dependencies]
failure = "0.1.8"
structopt = "0.3.26"
syntect = "4.7.1"
prettyprint = "0.8.1"
indicatif = "0.15.0"
tempfile = "3.3.0"
log = "0.4.17"
env_logger = "0.9.1"
difference = "2.0.0"
ansi_term = "0.12.1"