-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
29 lines (25 loc) · 861 Bytes
/
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
[package]
name = "heh"
version = "0.6.1"
edition = "2021"
description = "A cross-platform terminal UI used for modifying file data in hex or ASCII."
readme = "README.md"
repository = "https://github.com/ndd7xv/heh"
license = "MIT"
categories = ["command-line-utilities", "text-editors"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ratatui = "0.29.0"
clap = { version = "4.5.21", features = ["derive"] }
arboard = { version = "3.4.1", default-features = false }
memmap2 = "0.9.5"
crossbeam = "0.8.4"
hex = "0.4.3"
[profile.dev]
opt-level = 1 # Default would excessively lag
# cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-unknown-linux-gnu --release
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"