[package]
name = "whatsyoursign"
version = "0.1.2"
edition = "2024"
description = "A tool to inspect the signature of a file"
license = "AGPL-3.0"
repository = "https://github.com/anhkhoakz/some-rust-scripts/tree/main/whatsyoursign"
readme = "README.md"
keywords = ["macos", "signature", "inspect", "debug"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.53", features = ["derive"] }
which = "8.0.0"
plist = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
owo-colors = "4.0"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
incremental = false
opt-level = 3
strip = true
debug = false
[lints.clippy]
all = "warn"
pedantic = "warn"
style = "warn"
nursery = "warn"
cargo = "warn"