forked from PaulJuliusMartinez/jless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 878 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
[package]
name = "jless"
version = "0.9.0"
authors = ["Paul Julius Martinez <[email protected]>"]
license = "MIT"
description = "A command-line JSON viewer"
keywords = ["cli", "json"]
categories = ["command-line-utilities"]
repository = "https://github.com/PaulJuliusMartinez/jless"
homepage = "https://jless.io"
documentation = "https://jless.io/user-guide.html"
edition = "2018"
rust-version = "1.67"
[features]
default = ["clipboard"]
clipboard = ["dep:clipboard"]
sexp = []
[dependencies]
logos = "0.12.0"
unicode-width = "0.1.5"
unicode-segmentation = "1.7.1"
rustyline = "9.0.0"
regex = "1.5"
lazy_static = "1.4.0"
termion = "1.5.6"
signal-hook = "0.3.8"
libc = "0.2"
clap = { version = "4.0", features = ["derive"] }
isatty = "0.1"
libc-stdhandle = "0.1.0"
yaml-rust = "0.4"
clipboard = { version = "0.5", optional = true }
[dev-dependencies]
indoc = "1.0"