Files
ureq/Cargo.toml
Martin Algesten ed999b579d Removing AsciiString dep and one unsafe
This library is not about enforcing standards, so the internal use of
AsciiString for headers and status lines is not necessary.
2019-10-20 10:40:30 +02:00

34 lines
940 B
TOML

[package]
name = "ureq"
version = "0.11.1"
authors = ["Martin Algesten <martin@algesten.se>"]
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"
[features]
default = ["tls"]
json = ["serde_json"]
charset = ["encoding"]
tls = ["rustls", "webpki", "webpki-roots"]
[dependencies]
base64 = "0.10"
chunked_transfer = "1"
cookie = { version = "0.12", features = ["percent-encode"] }
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.17", optional = true }
serde_json = { version = "1", optional = true }
encoding = { version = "0.2", optional = true }
[package.metadata."docs.rs"]
all-features = true