fcm 0.6.0

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.4"
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.