dh 0.10.0

Data handling in Rust, made easy.
Documentation
name: Run CI
on: [push, pull_request]
env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: full
jobs:
  ci:
    runs-on: ubuntu-latest

    steps:
      - name: Set up Rust
        uses: actions/checkout@v4
      - name: Install cargo-audit
        run: cargo install cargo-audit
      - name: Build
        run: cargo build --verbose --all-features
      - name: Run tests
        run: cargo test --verbose --all-features
      - name: Run clippy
        run: cargo clippy --verbose --all-features -- -D warnings
      - name: Run audit
        run: cargo audit