-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.05 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
48
49
[package]
name = "rhc"
version = "0.1.1"
authors = ["Kevin Fleming <kvnflm@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Command-line HTTP client"
readme = "README.md"
homepage = "https://github.com/ktfleming/rhc"
repository = "https://github.com/ktfleming/rhc"
keywords = ["cli", "http"]
categories = ["command-line-utilities"]
exclude = [
"screenshots/*",
]
[[bin]]
name = "rhc"
path = "src/bin/main.rs"
[dependencies]
anyhow = "1.0.28"
attohttpc = { version = "0.13.0", features = ["json", "form", "charsets"] }
atty = "0.2.14"
csv = "1.1.3"
lazy_static = "1.4.0"
log = "0.4.8"
regex = "1.3.7"
scopeguard = "1.1.0"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.52"
shellexpand = "2.0.0"
simplelog = "0.8.0"
spinners = "1.2.0"
structopt = "0.3.14"
sublime_fuzzy = "0.6.0"
syntect = "4.1.1"
termion = "1.5.5"
toml = "0.5.6"
tui = "0.9.1"
unicode-width = "0.1.7"
walkdir = "2.3.1"
[dev-dependencies]
assert_cmd = "1.0.1"
httptest = "0.13.1"
predicates = "1.0.4"
pretty_env_logger = "0.4.0"
tempfile = "3.1.0"