3 releases

0.1.2 Jan 7, 2021
0.1.1 Apr 19, 2018
0.1.0 Apr 19, 2018

#8 in #push-notifications

MIT license

5KB

Push More: Instantly send notifications through Telegram

This is a Rust crate for the Push More service to easily send notifications through Telegram.

Build Status Docs Status On crates.io MIT licensed

Usage

Add this to your Cargo.toml:

[dependencies]
pushmore = "0.1"

and this to your crate root:

extern crate pushmore;
use pushmore::PushMore;

and then you can use it as follows:

let client = PushMore::new(); // This will use the key stored in the PUSH_MORE_KEY environment variable.
// or
let client = PushMore::new_with_key("<pushmore key>".to_string());

client.send("hello!".to_string());

TODO

  • Switch out reqwest for underlying hyper library to lighten the dependencies.
  • Add tests

Dependencies

~2.5MB
~72K SLoC