dco3 0.19.0

Async API wrapper for DRACOON in Rust.
Documentation
name: Rust
on:
  push:
    branches: [ "*" ]
  pull_request:
    branches: [ "master" ]
env:
  CARGO_TERM_COLOR: always
jobs:
  build:
    environment:
      testing
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: build
      run: cargo build --verbose
    - name: lint (clippy)
      run: cargo clippy -- -D warnings
    - name: format
      run: cargo fmt -- --check
    - name: tests
      run: cargo test --verbose