a2

Travis Build Status MIT licensed crates.io

HTTP/2 Apple Push Notification Service for Rust using Tokio and async sending.

Documentation

Features

Usage

Add this to Cargo.toml:

[dependencies] a2 = "0.3" tokio = "0.1" futures = "0.1"

then add to your crate root:

rust extern crate a2; extern crate tokio; extern crate futures;

Examples

The library supports connecting to Apple Push Notification service either using a certificate with a password or a private key with a team id and key id. Both are available from your Apple account and with both it is possible to send push notifications to one application.

Gotchas

We've been pushing some millions of notifications daily through this library and are quite happy with it. Some things to know, if you're evaluating the library for production use:

Tests

cargo test