dtmf 0.1.5

A no-std DTMF decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
image: "rust:latest"

before_script:
  - apt update
  - apt install -y libasound2 libasound2-dev
  - rustup component add rustfmt
  - rustup component add clippy

test:
  script:
    - cargo fmt -- --check
    - cargo clippy --all-targets --all-features -- -D warnings
    - cargo test