-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (44 loc) · 1.45 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
[package]
name = "hex-patch"
description = """
HexPatch is a binary patcher and editor with terminal user interface (TUI),
it's capable of disassembling instructions and assembling patches.
It supports a variety of architectures and file formats.
Also, it can edit remote files via SSH."""
version = "1.9.4"
authors = ["Ettore Ricci"]
edition = "2021"
readme = "docs/README.md"
license = "MIT"
homepage = "https://etto48.github.io/HexPatch/"
repository = "https://github.com/Etto48/HexPatch"
keywords = ["reverse-engineering","tui","hex-editor","binary-patching"]
categories = ["command-line-utilities","development-tools"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[dependencies]
bitflags = { version = "2.6", features = ["std"] }
capstone = "0.12"
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.28", features = ["serde"] }
dirs = "5.0"
keystone-engine = "0.1"
macro_rules_attribute = "0.2"
mlua = { version = "0.10", features = ["lua54", "vendored", "serialize"] }
object = "0.36"
pdb = "0.8"
ratatui = { version = "0.29", features = ["serde"] }
regex = "1.11"
russh = "0.48"
russh-keys = "0.48"
russh-sftp = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
symbolic-demangle = "12.12"
tempfile = "3.13"
tokio = "1.41"
termbg = "0.6"
[target.'cfg(windows)'.dependencies]
winapi = "0.3"