-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (58 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "cargo-show-asm"
version = "0.2.62"
edition = "2024"
rust-version = "1.86"
description = "A cargo subcommand that displays the generated assembly of Rust source code."
readme = "README.md"
homepage = "https://github.com/pacak/cargo-show-asm"
repository = "https://github.com/pacak/cargo-show-asm"
license = "MIT OR Apache-2.0"
keywords = ["assembly", "cargo", "plugins"]
categories = [
"development-tools::cargo-plugins",
"development-tools::debugging",
]
[workspace.lints.clippy]
if_not_else = "warn"
items_after_statements = "warn"
wildcard_imports = "warn"
[workspace.metadata.cauwugo]
bpaf = true
[[bin]]
name = "cargo-asm"
path = "src/main.rs"
[dependencies]
anyhow = "1"
ar = { version = "0.9", optional = true }
bpaf = { version = "0.9.26", features = ["autocomplete", "bpaf_derive"] }
capstone = { version = "0.14", optional = true }
cargo_metadata = "0.23.1"
line-span = "0.1"
nom = "8"
object = { version = "0.40", 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.26", features = [
"autocomplete",
"bpaf_derive",
"docgen",
] }
cargo-show-asm = { path = ".", features = ["disasm"] }
[features]
default = ["_unstable", "dull-color"]
_unstable = ["cargo_metadata/unstable"]
bright-color = ["bpaf/bright-color"]
disasm = ["ar", "capstone", "object"]
dull-color = ["bpaf/dull-color"]
[lints]
workspace = true
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1