[package]
edition = "2021"
name = "dead-ringer"
version = "1.2.2"
authors = ["Zackary Troop"]
build = false
exclude = [
"assets/*",
"examples/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal-based binary diff viewer with hex and ASCII representations"
homepage = "https://github.com/ztroop/dead-ringer"
documentation = "https://github.com/ztroop/dead-ringer"
readme = "README.md"
keywords = [
"binary",
"diff",
"hex",
"tui",
"cli",
]
categories = [
"command-line-utilities",
"visualization",
]
license = "MIT"
repository = "https://github.com/ztroop/dead-ringer"
[[bin]]
name = "dring"
path = "src/main.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.crossterm]
version = "0.29"
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm"]