forked from pacak/cargo-show-asm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.2 KB
/
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
41
42
[package]
name = "cargo-show-asm"
version = "0.2.20"
edition = "2021"
description = "A cargo subcommand that displays the generated assembly of Rust source code."
categories = ["development-tools::cargo-plugins", "development-tools::debugging" ]
keywords = ["assembly", "plugins", "cargo"]
repository = "https://github.com/pacak/cargo-show-asm"
homepage = "https://github.com/pacak/cargo-show-asm"
authors = [ "Michael Baykov <manpacket@gmail.com>" ]
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1"
bpaf = { version = "0.9.3", features = ["bpaf_derive", "autocomplete"] }
cargo_metadata = "0.17.0"
line-span = "0.1"
nom = "7"
once_cell = "1"
owo-colors = { version = "3", features = ["supports-colors"] }
regex = "1"
rustc-demangle = "0.1"
same-file = "1.0.6"
supports-color = "2.0"
interprocess = { version = "1.2.1", optional = true, default-features = false }
[dev-dependencies]
bpaf = { version = "0.9.3", features = ["bpaf_derive", "autocomplete", "docgen"] }
[features]
bright-color = ["bpaf/bright-color"]
default = ["dull-color", "ipc"]
dull-color = ["bpaf/dull-color"]
ipc = ["dep:interprocess"]
[[bin]]
name = "cargo-asm"
path = "src/main.rs"
[workspace.metadata.cauwugo]
bpaf = true