Rust implementation of the Harmony chat protocol.
Currently implements a lightweight client and a client API (powered by tonic
), along with auto generated API via tonic-build
.
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 a guild. It will repost messages whenever someone else posts a message.message_log
: Showcases a simple message log bot that operates in a guild. It will log messages to the console whenever someone posts a message.
Bot run instructions:
http://127.0.0.1:2289
or whatever you set HOMESERVER
constant to.cargo run --example example_name
. First run will register to the homeserver.guild_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 (implies gen_client
feature).gen_client
feature to generate client service code.gen_server
feature to generate server service code.