http-url 0.2.0

A focused HTTP/HTTPS URL builder powered by the `url` crate.
Documentation
name: CI
on:
  pull_request:
    branches:
      - trunk
  push:
    branches:
      - trunk
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v7
      - uses: actions-rust-lang/setup-rust-toolchain@v1
        with:
          components: rustfmt, clippy
      - name: Format
        run: cargo fmt --all --check
      - name: Clippy
        run: cargo clippy --all-targets --all-features -- -D warnings
      - name: Build
        run: cargo build --verbose
      - name: Test
        run: cargo test --verbose