-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
74 lines (67 loc) · 1.52 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "binsider"
version = "0.2.1"
description = "Analyze ELF binaries like a boss"
authors = ["Orhun Parmaksız <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://binsider.dev"
repository = "https://github.com/orhun/binsider"
keywords = ["analyze", "binary", "tui", "elf"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.74.1"
include = [
"src/**/*",
"Cargo.*",
"LICENSE*",
"README.md",
"CHANGELOG.md",
]
[features]
default = ["dynamic-analysis"]
dynamic-analysis = ["lurk-cli"]
[dependencies]
ratatui = "0.28.1"
clap = { version = "4.5.20", features = ["derive", "env", "wrap_help", "cargo"] }
thiserror = "1.0.64"
elf = "0.7.1"
rust-strings = "0.6.0"
heh = "0.6.1"
tui-input = "0.10.1"
tui-popup = "0.5.0"
unicode-width = "0.2.0"
textwrap = "0.16.1"
lurk-cli = { version = "0.3.9", optional = true }
nix = { version = "0.29.0", features = ["ptrace", "signal"] }
ansi-to-tui = "6.0.0"
console = "0.15.8"
which = "6.0.3"
better-panic = "0.3.0"
tui-big-text = "0.6.0"
chrono = "0.4.38"
bytesize = "1.3.0"
sysinfo = { version = "0.32.0", default-features = false, features = ["user"] }
webbrowser = "1.0.2"
lddtree = "0.3.5"
itertools = "0.13.0"
termbg = "0.5.2"
[dev-dependencies]
pretty_assertions = "1.4.1"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
strip = true
[profile.bench]
opt-level = 3
debug = false