-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (37 loc) · 1.01 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
[package]
name = "cabot"
version = "0.7.1"
authors = ["Guillaume Gauvrit <guillaume@gauvr.it>"]
readme = "README.md"
keywords = ["http", "https", "request", "client"]
categories = ["web-programming::http-client", "command-line-interface"]
description = """Simple HTTP Client."""
license = "BSD-3-Clause"
documentation = "https://docs.rs/crate/cabot"
#homepage = "https://github.com/mardiros/cabot"
repository = "https://github.com/mardiros/cabot"
edition = "2018"
[lib]
name = "cabot"
path = "src/lib.rs"
[[bin]]
name = "cabot"
path = "src/bin.rs"
doc = false
[features]
default = []
json = ["serde", "serde_json"]
pretty_log = ["pretty_env_logger"]
functional_tests = []
[dependencies]
clap = "2.33.0"
log = "0.4.8"
rustls = "0.17.0"
webpki = "0.21.2"
webpki-roots = "0.19.0"
url = "2.1.0"
async-std = {version = "1.5.0", features = ["attributes"]}
futures = "0.3.4"
pretty_env_logger = { version = "0.4.0", optional = true }
serde_json = { version = "1.0.50", optional = true}
serde = { version = "1.0.105", optional = true}