summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: f0c27696cda8f62354043ab8526485b085cf6441 (plain)
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
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
description = "A command-line hex viewer"
homepage = "https://github.com/sharkdp/hexyl"
license = "MIT/Apache-2.0"
name = "hexyl"
readme = "README.md"
repository = "https://github.com/sharkdp/hexyl"
version = "0.11.0"
edition = "2021"

[dependencies]
anstyle = "0.2"
anyhow = "1.0"
const_format = "0.2"
is-terminal = "0.4"
libc = "0.2"
thiserror = "1.0"
terminal_size = "0.2"

[dependencies.clap]
version = "4"
default-features = false
features = ["std", "suggestions", "color", "wrap_help", "cargo", "help", "usage", "error-context"]

[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.0"
pretty_assertions = "1.3.0"

[profile.release]
lto = true
codegen-units = 1