-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 836 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 836 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
[package]
name = "turbohex"
version = "0.1.1"
edition = "2024"
description = "Interactive terminal hex-viewer with plugin-based decoders"
readme = "README.md"
repository = "https://github.com/nmbr7/turbohex"
homepage = "https://github.com/nmbr7/turbohex"
documentation = "https://docs.rs/turbohex"
license = "MIT"
keywords = ["hexviewer", "tui", "binary", "wasm", "cli"]
categories = [
"command-line-utilities",
"development-tools::debugging",
"visualization",
"encoding",
"wasm",
]
[dependencies]
chrono = { version = "0.4.44", default-features = false, features = ["clock"] }
clap = { version = "4.6.0", features = ["derive"] }
crossterm = "0.29.0"
memmap2 = "0.9.10"
mlua = { version = "0.11.6", features = ["lua54", "vendored"] }
ratatui = "0.30.0"
wasmtime = { version = "43.0.0", features = ["cranelift", "runtime"] }