13 releases

0.4.0 Oct 16, 2023
0.3.0 Dec 6, 2018
0.2.4 Dec 4, 2018
0.2.3 Apr 8, 2018
0.1.5 Mar 28, 2018

#165 in HTTP client

Download history 64/week @ 2024-12-16 46/week @ 2024-12-23 16/week @ 2024-12-30 76/week @ 2025-01-06 100/week @ 2025-01-13 88/week @ 2025-01-20 45/week @ 2025-01-27 127/week @ 2025-02-03 88/week @ 2025-02-10 125/week @ 2025-02-17 129/week @ 2025-02-24 106/week @ 2025-03-03 121/week @ 2025-03-10 105/week @ 2025-03-17 102/week @ 2025-03-24 49/week @ 2025-03-31

383 downloads per month
Used in 4 crates

MIT license

33KB
872 lines

Build status crates.io crates.io Discord

Discord RPC Client

Discord RPC client for Rust

Installation

Add this to your Cargo.toml:

[dependencies]
discord-rpc-client = "^0.4"

Example

use std::{env, thread, time};
use discord_rpc_client::{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(425407036495495169);

    // 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));
}

More examples can be found in the examples directory.

Contributions

See CONTRIBUTING.md

Dependencies

~1.4–2.7MB
~49K SLoC