# fcm
[][travis]
[][coveralls]
[][crates.io]
[][crates.io]
[][crates.io]
[crates.io]: https://crates.io/crates/fcm
[travis]: https://travis-ci.org/panicbit/fcm-rust
[coveralls]: https://coveralls.io/github/panicbit/fcm-rust
## Usage
Add this to `Cargo.toml`:
```rust
[dependencies]
fcm = "0.6"
tokio = "0.1"
futures = "0.1"
```
then add this to your crate root:
```rust
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](https://github.com/xray-tech/xorc-notifications), which is a
full-fledged consumer for sending push notifications.