|
|
|
|
[package]
|
|
|
|
|
name = "lowcharts"
|
|
|
|
|
version = "0.5.9"
|
|
|
|
|
authors = ["JuanLeon Lahoz <juanleon.lahoz@gmail.com>"]
|
|
|
|
|
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.9"
|
|
|
|
|
chrono = "^0.4.28"
|
|
|
|
|
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"
|