http_io 0.3.0

A library with limited dependencies containing an HTTP client and server.
Documentation
#!/bin/bash

set -ex

cargo build
cargo build --no-default-features
cargo build --no-default-features --features std,ssl-openssl
cargo build --no-default-features --features std,ssl-rustls
cargo check

cargo test
cargo test --no-default-features --features std,ssl-openssl
cargo test --no-default-features --features std,ssl-rustls

cargo run --example readme
cargo run --example connection_reuse
cargo run --example no_std --no-default-features -- http://fake.com
cargo build --target thumbv7m-none-eabi --no-default-features

echo "All tests passed"