[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", ]