forked from ducaale/xh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.08 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
[package]
name = "xh"
version = "0.7.0"
authors = ["ducaale <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Yet another HTTPie clone"
documentation = "https://github.com/ducaale/ht"
homepage = "https://github.com/ducaale/ht"
repository = "https://github.com/ducaale/ht"
readme = "README.md"
[dependencies]
ansi_term = "0.12"
anyhow = "1.0.38"
assert_matches = "1.4.0"
atty = "0.2"
jsonxf = "1.0"
indicatif = "0.15.0"
lazy_static = "1.4.0"
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "stream", "json", "gzip", "brotli", "multipart"] }
rpassword = "5.0.0"
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
structopt = "0.3"
tokio = { version = "1.0", features = ["full"] }
tokio-util = {version = "0.6", features= ["codec"]}
[dependencies.syntect]
version = "4.4"
default-features = false
features = ["parsing", "html", "yaml-load", "dump-load", "dump-create", "regex-onig"]
[dev-dependencies]
assert_cmd = "1.0"
indoc = "1.0"
predicates = "1.0.7"
[build-dependencies]
syntect = { version = "4.4", default-features = false }