-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
38 lines (35 loc) · 862 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
38
[package]
name = "tv-cli"
version = "0.7.0"
authors = ["uzimaru0000 <shuji365630@gmail.com>"]
edition = "2018"
description = "Format json into table view"
homepage = "https://github.com/uzimaru0000/tv"
keywords = [
"json",
"viewer",
"tool",
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/uzimaru0000/tv"
exclude = [
".github/*",
"scripts/*",
"array.json",
"example.json",
"cliff.toml"
]
[[bin]]
name = "tv"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.43"
csv = "1.1.6"
serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
tokio = { version = "1.10.1", features = ["full"] }
unicode-width = "0.1.7"
clap = "2.33.3"
atty = "0.2.14"