async-observe 0.1.1

Async single-producer, multi-consumer channel that only retains the last sent value
Documentation
name: ci
on:
    push:
        branches: [main]
    pull_request:
        branches: [main]
env:
    CARGO_TERM_COLOR: always
    RUSTFLAGS: -Dwarnings
    RUST_BACKTRACE: full
    MSRV: 1.85
    RUSTDOCFLAGS: -Dwarnings
jobs:
    build:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - name: Build
            run: cargo build --verbose
          - name: Clippy
            run: cargo clippy
          - name: Tests
            run: cargo test --verbose