This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
executable file
·61 lines (56 loc) · 1.79 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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.1"
authors = ["Koutheir Attouchi <koutheir@gmail.com>"]
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.0" }
goblin = { version = "0.8" }
once_cell = { version = "1.19" }
log = { version = "0.4" }
memmap2 = { version = "0.9" }
rayon = { version = "1.10" }
regex = { version = "1.10" }
scroll = { version = "0.12" }
flexi_logger = { version = "0.28" }
termcolor = { version = "1.4" }
dynamic-loader-cache = { version = "0.1" }
clap = { version = "4.5", features = [
"color",
"help",
"usage",
"error-context",
"suggestions",
"derive",
"cargo",
] }