-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
32 lines (30 loc) · 969 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
[package]
name = "http_req"
version = "0.13.1"
license = "MIT"
description = "simple and lightweight HTTP client with built-in HTTPS support"
repository = "https://github.com/jayjamesjay/http_req"
authors = ["jayjamesjay"]
readme = "README.md"
categories = ["web-programming::http-client", "network-programming"]
keywords = ["http", "client", "request"]
edition = "2021"
[dependencies]
unicase = "^2.8"
base64 = "^0.22.1"
zeroize = { version = "^1.8.1", features = ["zeroize_derive"] }
native-tls = { version = "^0.2", optional = true }
rustls = { version = "^0.23", optional = true }
rustls-pemfile = { version = "^2.2", optional = true }
rustls-pki-types = { version = "^1.10", features = ["alloc"], optional = true }
webpki = { version = "^0.22", optional = true }
webpki-roots = { version = "^0.26", optional = true }
[features]
default = ["native-tls"]
rust-tls = [
"rustls",
"rustls-pki-types",
"webpki",
"webpki-roots",
"rustls-pemfile",
]