-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.44 KB
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
52
[package]
name = "cargo-show-asm"
version = "0.2.57"
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.24", features = ["bpaf_derive", "autocomplete"] }
capstone = { version = "0.14", optional = true }
cargo_metadata = "0.23.1"
line-span = "0.1"
nom = "8"
object = { version = "0.39", optional = true }
owo-colors = { version = "4", features = ["supports-colors"] }
regex = "1"
rustc-demangle = "0.1"
same-file = "1.0.6"
serde = "1.0.216"
supports-color = "3.0"
[dev-dependencies]
bpaf = { version = "0.9.24", features = ["bpaf_derive", "autocomplete", "docgen"] }
cargo-show-asm = { path = ".", features = ["disasm"] }
[features]
default = ["dull-color", "_unstable"]
bright-color = ["bpaf/bright-color"]
disasm = ["ar", "capstone", "object"]
dull-color = ["bpaf/dull-color"]
_unstable = ["cargo_metadata/unstable"]
[[bin]]
name = "cargo-asm"
path = "src/main.rs"
[workspace.metadata.cauwugo]
bpaf = true
[profile.release-lto]
lto = true
codegen-units = 1
inherits = "release"