You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
964 B
44 lines
964 B
[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.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"
|
|
|