ntfy 0.5.0

Library for sending notifications over ntfy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env just --justfile

precommit:
    cargo fmt
    cargo clippy
    cargo clippy --features blocking

check:
    cargo fmt --all -- --config format_code_in_doc_comments=true
    cargo check
    cargo clippy -- -D warnings
    cargo clippy --features blocking -- -D warnings