2021-11-07 02:33:40 +00:00
|
|
|
[package]
|
2021-11-08 02:16:22 +00:00
|
|
|
name = "hline"
|
2021-11-07 02:33:40 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2021-11-08 03:45:19 +00:00
|
|
|
description = "a grep-like tool that highlights lines in files"
|
|
|
|
license-file = "LICENSE.md"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/ollien/hline"
|
|
|
|
homepage = "https://github.com/ollien/hline"
|
2021-11-07 02:33:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
grep = "0.2"
|
|
|
|
thiserror = "1"
|
|
|
|
termion = "1"
|
2021-11-08 03:09:46 +00:00
|
|
|
clap = "2.33"
|
2021-11-07 02:33:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test-case = "1.2.1"
|
2021-11-08 00:41:58 +00:00
|
|
|
stringreader = "0.1"
|