async-button 0.2.0

Async button handling crate for no_std environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: CI
on:
  push:

jobs:
  checks:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@nightly
        with:
          components: clippy, rustfmt
      - run: cargo test --all-features
      - run: cargo fmt
      - run: cargo clippy --all-targets --all-features