1个不稳定版本
| 0.1.2 | 2024年8月4日 | 
|---|---|
| 0.1.1 |  | 
| 0.1.0 |  | 
#266 在 HTTP客户端
每月下载 274 次
13KB
214 代码行
SimplePush:simplepush.io的Rust客户端
SimplePush API的Rust客户端
将客户端添加到项目中
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"),
    ));
依赖项
~7–20MB
~255K SLoC