forked from algesten/ureq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 988 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
[package]
name = "ureq"
version = "0.11.3"
authors = ["Martin Algesten <[email protected]>"]
description = "Minimal HTTP request library"
license = "MIT/Apache-2.0"
repository = "https://github.com/algesten/ureq"
readme = "README.md"
keywords = ["web", "request", "http", "rest", "client"]
categories = ["web-programming::http-client"]
edition = "2018"
[package.metadata."docs.rs"]
all-features = true
[features]
default = ["tls", "cookies"]
json = ["serde_json"]
charset = ["encoding"]
tls = ["rustls", "webpki", "webpki-roots"]
cookies = ["cookie"]
[dependencies]
base64 = "0.11"
chunked_transfer = "1"
cookie = { version = "0.12", features = ["percent-encode"], optional = true}
lazy_static = "1"
qstring = "0.7"
url = "2"
rustls = { version = "0.16", optional = true, features = [] }
webpki = { version = "0.21", optional = true }
webpki-roots = { version = "0.18", optional = true }
serde_json = { version = "1", optional = true }
encoding = { version = "0.2", optional = true }