6个版本

0.2.4 2020年1月28日
0.2.3 2020年1月28日
0.2.2 2019年4月20日
0.2.1 2019年2月12日
0.1.0 2019年2月11日

##1908 in Web编程

Apache-2.0

2MB
3K SLoC

C++ 1.5K SLoC // 0.0% comments C# 462 SLoC // 0.1% comments Rust 339 SLoC Python 249 SLoC C 172 SLoC // 0.0% comments Objective-C 61 SLoC // 0.1% comments INI 54 SLoC Unreal Plugin 28 SLoC Unreal Project 18 SLoC

rustcord

围绕Discord富存在API的安全包装,更新到最新库版本。
包装版本:0.2.4
Discord RPC版本:3.4.0

示例

use rustcord::{Rustcord, EventHandlers, User, RichPresenceBuilder};
use std::io;

pub struct Handlers;

impl EventHandlers for Handlers {
    fn ready(user: User) {
        println!("User {}#{} logged in...", user.username, user.discriminator);
    }
}

fn main() -> Result<(), io::Error> {
    let discord = Rustcord::init::<Handlers>("APP_ID_HERE", true, None)?;

    let presence = RichPresenceBuilder::new()
        .state("Rusting")
        .details("Mining few crystals")
        .large_image_key("rust")
        .large_image_text("Rust")
        .small_image_key("amethyst")
        .small_image_text("Amethyst")
        .build();

    discord.update_presence(presence)?;
    loop {
        discord.run_callbacks();
    }

    Ok(())
}

文档

docs.rs

C API文档

许可证

Apache-2.0

依赖项