http_io 0.2.16

A library with limited dependencies containing an HTTP client and server.
Documentation
[package]
name = "http_io"
version = "0.2.16"
authors = ["Remi Bernotavicius <remi@abort.cc>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/bobbobbio/http_io"
homepage = "https://github.com/bobbobbio/http_io"
description = """
A library with limited dependencies containing an HTTP client and server.
"""
readme = "README.md"

[badges]
travis-ci = { repository = "bobbobbio/http_io" }

[features]
default = ["std", "ssl-native-tls"]
ssl-openssl = ["ssl", "openssl"]
ssl-rustls = ["ssl", "rustls", "webpki-roots", "rustls-pemfile"]
ssl-native-tls = ["ssl", "native-tls"]
std = []
ssl = []

[dependencies]
hashbrown = "^0.3"
openssl = { version = "^0.10", optional = true }
rustls = { version = "^0.20.6", optional = true }
webpki-roots = { version = "^0.22", optional = true }
rustls-pemfile = { version = "^1.0", optional = true }
native-tls = { version = "^0.2", optional = true }

[dev-dependencies]
structopt = "0.3.7"