A Rust client for the SimplePush API
cargo add simplepush-rs
let result = SimplePush::send(Message::new(
"SIMPLE_PUSH_KEY",
Some("title"),
"test message",
None,
None,
));
let result = SimplePush::send(Message::new(
"SIMPLE_PUSH_KEY",
Some("title"),
"test message",
None,
None,
"ENCRYPTION_KEY",
Some("SALT"),
));