oxhttp 0.1.5

Very simple implementation of HTTP 1.1 (both client and server)
Documentation
name: build

on: [push, pull_request]

jobs:
  fmt:
    name: fmt
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - run: rustup update
      - run: rustup component add rustfmt
      - run: cargo fmt -- --check

  clippy:
    name: clippy
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - run: rustup update
      - run: rustup component add clippy
      - run: cargo clippy --all-targets
      - run: cargo clippy --all-targets --features native-tls
      - run: cargo clippy --all-targets --features rustls
      - run: cargo clippy --all-targets --features rayon

  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - run: rustup update
      - run: cargo build
      - run: cargo test --verbose --all-targets
      - run: cargo test --verbose --all-targets --features native-tls
      - run: cargo test --verbose --all-targets --features rustls
      - run: cargo test --verbose --all-targets --features rayon
        env:
          RUST_BACKTRACE: 1