Rust implementation of the Harmony chat protocol.
nix-shell
(or nix develop
if you use flakes) should get you covered.protoc
is in your PATH
env variable.
build.rs
fails, make sure to set: PROTOC
env variable to your protoc
executablePROTOC_INCLUDE
env variable to wherever protobuf include files are located, most likely in /usr/share/include
.http://127.0.0.1:2289
.echo_bot
: Showcases a simple message echo bot that operates in one channel.
http://127.0.0.1:2289
or whatever you set HOMESERVER
constant to.cargo run --example echo_bot
, it will register to the homeserver.guild_id
to guild_id
and channel_id
to channel_id
.use_parking_lot
feature if you want to use parking_lot sync
types instead of std::sync
.client
feature for a lightweight client implementation and the client API. Enabled by default.