-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 883 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 883 Bytes
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
[package]
name = "dz6"
version = "0.7.0"
edition = "2024"
description = "A vim-inspired, TUI-based hexadecimal editor"
readme = "README.md"
homepage = "https://menteb.in/dz6"
repository = "https://github.com/mentebinaria/dz6"
license = "GPL-3.0-or-later"
keywords = ["hex-editor", "reverse-engineering", "binary", "pe", "elf"]
categories = ["command-line-utilities", "security"]
[dependencies]
arboard = { version = "3", default-features = false }
clap = { version = "4.5.49", features = ["derive"] }
crossterm = "0.29.0"
directories-next = "2.0.0"
encoding_rs = "0.8.35"
evalexpr = "13.1.*"
hex = "0.4.3"
memchr = "2.8.0"
mmap-io = "0.9.4"
ratatui = "0.30.0"
regex = "1.11.2"
serde = { version = "1.0.228", features = ["derive"] }
shell-words = "1.1.0"
toml = "1.0.1"
tui-input = "0.15.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"