-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (41 loc) · 1001 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
38
39
40
41
42
43
44
[package]
name = "treq"
authors = [ "Talis-Fb" ]
version = "0.4.0"
edition = "2021"
license = "GPL-3.0"
description = "A Client to make HTTP requests for Vim/Terminal Users"
homepage = "https://github.com/talis-fb/TReq"
repository = "https://github.com/talis-fb/TReq"
documentation = "https://github.com/talis-fb/TReq/wiki"
categories = ["command-line-interface"]
keywords = [
"cli",
"tui",
"http",
"client",
"terminal",
"restful"
]
[dependencies]
tui = "0.19"
crossterm = "0.25"
reqwest = "0.11.13"
tokio = { version = "1.23.0", features = ["full"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1.60"
tempfile = "3.3.0"
toml = "0.5.10"
uuid = { version = "1.2.2", features = [ "v4", "fast-rng", "macro-diagnostics" ]}
directories = "4.0.1"
regex = "1.7.1"
log = "0.4.17"
log4rs = "1.2.0"
tera = "1.18.1"
mockall = "0.11.4"
clap = { version = "4.2.7", features = ["derive"] }
[[bin]]
name = "treq"
[package.metadata]
optdepends = ["vim"]