-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
51 lines (44 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
[package]
name = "cargo-show-asm"
version = "0.2.42"
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 <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1"
ar = { version = "0.9", optional = true }
bpaf = { version = "0.9.15", features = ["bpaf_derive", "autocomplete"] }
capstone = { version = "0.12", optional = true }
cargo_metadata = "0.18.1"
line-span = "0.1"
nom = "7"
object = { version = "0.36", optional = true }
owo-colors = { version = "4", features = ["supports-colors"] }
regex = "1"
rustc-demangle = "0.1"
same-file = "1.0.6"
serde = "=1.0.195"
supports-color = "3.0"
[dev-dependencies]
bpaf = { version = "0.9.15", features = ["bpaf_derive", "autocomplete", "docgen"] }
cargo-show-asm = { path = ".", features = ["disasm"] }
[features]
bright-color = ["bpaf/bright-color"]
default = ["dull-color"]
disasm = ["ar", "capstone", "object"]
dull-color = ["bpaf/dull-color"]
[[bin]]
name = "cargo-asm"
path = "src/main.rs"
[workspace.metadata.cauwugo]
bpaf = true
[profile.release-lto]
lto = true
codegen-units = 1
inherits = "release"