atomic_web_push 0.3.0

A library that eliminates potential risks (occasional crashes due to OpenSSL library's setenv conflicts in Linux environments) from the web push library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains tooling for signing with VAPID.

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

pub mod builder;
pub mod generator;
mod key;
mod signer;