forked from iqlusioninc/crates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 1.09 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
[package]
name = "iqhttp"
version = "0.3.0-pre"
description = """
iqlusion's HTTPS toolkit. Provides a high-level wrapper around hyper, with
built-in SSL/TLS support based on rustls.
"""
authors = ["Tony Arcieri <[email protected]>", "Shella Stephens <[email protected]>"]
homepage = "https://github.com/iqlusioninc/crates/"
repository = "https://github.com/iqlusioninc/crates/tree/main/iqhttp"
license = "Apache-2.0 OR MIT"
categories = ["network-programming", "web-programming::http-client"]
keywords = ["api", "client", "http", "rest", "web"]
readme = "README.md"
edition = "2021"
rust-version = "1.60"
[dependencies]
hyper = "0.14.10"
hyper-rustls = { version = "0.22", features = ["rustls-native-certs"] }
# optional dependencies
hyper-proxy = { version = "=0.9.1", optional = true } # carefully vet changes before bumping version
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
[features]
json = ["serde", "serde_json"]
proxy = ["hyper-proxy"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]