Skip to content

Releases: vishy1618/gcm

curl -> hyper, rustc-serialize -> serde

04 Jun 03:35
Compare
Choose a tag to compare

We are now using the hyper HTTP client instead of libcurl and the serde framework for serializing/deserializing JSON. In addition, fixed a bug with .dry_run() giving a response on message_id field that was not a u64.

Package reorganisation

11 Oct 16:33
Compare
Choose a tag to compare

This release includes some package reorganisations. The following package structures have changed:

// Before:
use gcm::message::Message;
use gcm::message::response::{GcmError, GcmResponse};
use gcm::notification::{Notification, NotificationBuilder};

// After:
use gcm::{Message, Notification, NotificationBuilder, GcmError, GcmResponse};

// or more simply:
use gcm::*;

Initial Release

07 Oct 20:55
Compare
Choose a tag to compare
0.1.0

Added license