28个版本 (6个稳定版)

1.3.0 2024年8月23日
1.2.0 2024年5月1日
1.1.2 2024年4月11日
1.1.1 2024年3月13日
0.5.5 2022年7月8日

268网络编程

Download history 71/week @ 2024-05-03 33/week @ 2024-05-10 44/week @ 2024-05-17 40/week @ 2024-05-24 54/week @ 2024-05-31 50/week @ 2024-06-07 85/week @ 2024-06-14 71/week @ 2024-06-21 33/week @ 2024-06-28 133/week @ 2024-07-05 30/week @ 2024-07-12 30/week @ 2024-07-19 526/week @ 2024-07-26 316/week @ 2024-08-02 266/week @ 2024-08-09 364/week @ 2024-08-16

每月下载 1,479
4 个包 使用

MIT 协议

60KB
1.5K SLoC

Discord RPC

crates.io crates.io docs.rs

Discord RPC客户端分叉的Rust Discord RPC客户端

注意:如果您想将其添加到游戏中,请查看Bevy实现

安装

将以下内容添加到您的 Cargo.toml

[dependencies]
discord-presence = "1.3"

或者运行

cargo add discord-presence

示例

use std::{env, thread, time};
use discord_presence::{Client, Event};

fn main() {
    // Get our main status message
    let state_message = env::args().nth(1).expect("Requires at least one argument");

    // Create the client
    let mut drpc = Client::new(1003450375732482138);

    // Register event handlers with the corresponding methods
    drpc.on_ready(|_ctx| {
        println!("ready?");
    });

    // or

    drpc.on_event(Event::Ready, |ctx| {
        println!("READY!");
    });

    // Start up the client connection, so that we can actually send and receive stuff
    drpc.start();

    // Set the activity
    drpc.set_activity(|act| act.state(state_message))
        .expect("Failed to set activity");

    // Wait 10 seconds before exiting
    thread::sleep(time::Duration::from_secs(10));
}

更多示例可以在示例目录中找到。

变更日志

查看CHANGELOG.md

贡献

查看CONTRIBUTING.md

依赖项

~6–31MB
~462K SLoC