fcm 0.6.1

An API to talk to FCM (Firebase Cloud Messaging) in Rust
Documentation

fcm

Travis Coveralls Crates.io Version Crates.io Downloads Crates.io License

Usage

Add this to Cargo.toml:

[dependencies]
fcm = "0.6"
tokio = "0.1"
futures = "0.1"

then add this to your crate root:

extern crate fcm;
extern crate tokio;
extern crate futures;

Examples

Check out the examples directory for a simple sender.

To see it used in a real project, take a look to the XORC Notifications, which is a full-fledged consumer for sending push notifications.