40 lines
976 B
TOML
40 lines
976 B
TOML
[package]
|
|
name = "binmeta"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
readme.workspace = true
|
|
publish.workspace = true
|
|
description = "Inspect Windows binary metadata with AI-friendly output."
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
common = { path = "../common", default-features = false }
|
|
goblin.workspace = true
|
|
humantime.workspace = true
|
|
lexopt.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security_Cryptography",
|
|
"Win32_Security_Cryptography_Catalog",
|
|
"Win32_Security_Cryptography_Sip",
|
|
"Win32_Security_WinTrust",
|
|
"Win32_Storage_FileSystem",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd.workspace = true
|
|
predicates.workspace = true
|
|
tempfile.workspace = true
|