40 lines
812 B
TOML
40 lines
812 B
TOML
[package]
|
|
name = "llvmtools"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
readme.workspace = true
|
|
publish.workspace = true
|
|
description = "Wrap LLVM object tools with Mercury-friendly PE/COFF diagnostics."
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "llvmobjdump"
|
|
path = "src/main_objdump.rs"
|
|
|
|
[[bin]]
|
|
name = "llvmreadobj"
|
|
path = "src/main_readobj.rs"
|
|
|
|
[[bin]]
|
|
name = "llvmnm"
|
|
path = "src/main_nm.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../common", default-features = false }
|
|
goblin.workspace = true
|
|
lexopt.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
assert_cmd.workspace = true
|
|
predicates.workspace = true
|
|
tempfile.workspace = true
|