Add this to Cargo.toml:
Cargo.toml
rust [dependencies] fcm = "0.3" tokio = "0.1" futures = "0.1"
then add this to your crate root:
rust extern crate fcm; extern crate tokio; extern crate futures;
Check out the examples directory for a simple sender.