web-push 0.11.0

Web push notification client with support for http-ece encryption and VAPID authentication.
Documentation
1
2
3
4
5
6
7
8
//! Contains tooling for signing with VAPID.

pub use self::{builder::VapidSignatureBuilder, signer::VapidSignature};
use self::{key::VapidKey, signer::VapidSigner};

pub mod builder;
mod key;
mod signer;