-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (38 loc) · 964 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
39
40
41
42
43
44
[package]
name = "lowcharts"
version = "0.5.9"
authors = ["JuanLeon Lahoz <[email protected]>"]
edition = "2018"
description = "Tool to draw low-resolution graphs in terminal"
documentation = "https://github.com/juan-leon/lowcharts/"
homepage = "https://github.com/juan-leon/lowcharts/"
repository = "https://github.com/juan-leon/lowcharts/"
readme = "README.md"
keywords = ["grep", "troubleshooting", "graph", "text", "console"]
categories = ["command-line-utilities", "text-processing"]
license = "MIT"
[package.metadata.deb]
depends = ""
[lib]
name = "lowcharts"
path = "src/lib.rs"
[[bin]]
name = "lowcharts"
path = "src/main.rs"
[dependencies]
clap = { version = "^3", features = ["cargo"] }
yansi = "^0"
atty = "^0"
derive_builder = "^0"
regex = "^1.10"
chrono = "^0.4.34"
humantime = "^2"
simplelog = "^0"
log = "^0"
[dev-dependencies]
float_eq = "^1"
tempfile = "3"
assert_cmd = "^2"
predicates = "^3"
serial_test = "2"
rand = "0.8.5"