summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8a801ec50e175db98a9853f5ff49222407be79df (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
[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.6.0"
edition = "2018"

[dependencies]
ansi_term = "0.11"
atty = "0.2"
ctrlc = "3.1"

[dependencies.clap]
version = "2"
features = ["suggestions", "color", "wrap_help"]

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