# Copyright 2018-2024 Koutheir Attouchi. # See the "LICENSE.txt" file at the top-level directory of this distribution. # # Licensed under the MIT license. This file may not be copied, modified, # or distributed except according to those terms. [package] name = "binary-security-check" version = "1.3.2" authors = ["Koutheir Attouchi "] license = "MIT" description = "Analyzer of security features in executable binaries" edition = "2021" readme = "README.md" documentation = "https://docs.rs/binary-security-check" homepage = "https://codeberg.org/koutheir/binary-security-check.git" repository = "https://codeberg.org/koutheir/binary-security-check.git" categories = ["command-line-utilities", "development-tools", "visualization"] keywords = [ "security", "aslr", "stack-overflow", "control-flow-guard", "fortify-source", ] # The release profile, used for `cargo build --release`. [profile.release] opt-level = 3 debug = false rpath = false lto = true debug-assertions = false codegen-units = 1 panic = 'unwind' incremental = false overflow-checks = true [dependencies] thiserror = { version = "1" } goblin = { version = "0.8" } once_cell = { version = "1" } log = { version = "0.4" } memmap2 = { version = "0.9" } rayon = { version = "1" } regex = { version = "1" } scroll = { version = "0.12" } flexi_logger = { version = "0.29" } termcolor = { version = "1" } dynamic-loader-cache = { version = "0.2" } clap = { version = "4", features = [ "color", "help", "usage", "error-context", "suggestions", "derive", "cargo", ] }