whatsyoursign 0.1.1

A tool to inspect the signature of a file
[package]
        name = "whatsyoursign"
        version = "0.1.1"
        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"
        atty = "0.2"
        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"
        module_name_repetitions = { level = "allow", priority = 1 }
        struct_excessive_bools = { level = "allow", priority = 1 }
        unnecessary_debug_formatting = { level = "allow", priority = 1 }