forked from markbt/streampager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.03 KB
/
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
45
46
47
[package]
name = "streampager"
version = "0.7.0"
authors = ["Mark Thomas <markbt@efaref.net>"]
edition = "2018"
description = "streampager is a pager for command output or large files"
documentation = "https://github.com/markbt/streampager"
homepage = "https://github.com/markbt/streampager"
repository = "https://github.com/markbt/streampager"
readme = "README.md"
keywords = ["pager", "less", "more"]
categories = ["command-line-utilities", "text-processing"]
license = "MIT"
build = "build.rs"
[[bin]]
name = "sp"
path = "src/bin/sp/main.rs"
[[bin]]
name = "spp"
path = "src/bin/spp/main.rs"
[dependencies]
anyhow = "1.0.20"
bit-set = "0.5.1"
clap = { version = "2.32.0", features = ["wrap_help"] }
dirs = "2.0.2"
lazy_static = "1.3.0"
lru-cache = "0.1.2"
memmap = "0.7.0"
notify = "4.0.15"
regex = "1.1.5"
scopeguard = "1.0.0"
smallvec = "1.1.0"
tempfile = "3.1.0"
terminfo = "0.7"
termwiz = "0.7"
unicode-segmentation = "1.2.1"
unicode-width = "0.1.5"
vec_map = "0.8.1"
[build-dependencies]
clap = "2.32.0"
[dev-dependencies]
pipe = "0.2.0"