-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
37 lines (33 loc) · 942 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
30
31
32
33
34
35
36
37
[package]
name = "csview"
version = "1.3.3"
authors = ["Wenxuan Zhang <wenxuangm@gmail.com>"]
description = "A high performance csv viewer with cjk/emoji support."
categories = ["command-line-utilities"]
homepage = "https://github.com/wfxr/csview"
keywords = ["csv", "pager", "viewer", "tool"]
readme = "README.md"
license = "MIT OR Apache-2.0"
exclude = ["/completions"]
repository = "https://github.com/wfxr/csview"
edition = "2021"
build = "build.rs"
[features]
default = ["pager"]
pager = ["dep:pager"]
[dependencies]
csv = "1.3"
clap = { version = "4", features = ["wrap_help", "derive"] }
exitcode = "1.1"
anyhow = "1.0"
unicode-width = "0"
unicode-truncate = "1.1"
itertools = "0.13"
[target.'cfg(target_family = "unix")'.dependencies]
pager = { version = "0.16", optional = true }
[build-dependencies]
clap = { version = "4", features = ["wrap_help", "derive"] }
clap_complete = "4"
[profile.release]
lto = true
codegen-units = 1