xmtp 0.3.1

Safe, ergonomic Rust client SDK for the XMTP messaging protocol
docs.rs failed to build xmtp-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: xmtp-0.1.0

xmtp

Ergonomic Rust SDK for the XMTP messaging protocol.

Wraps the xmtp-sys FFI bindings with safe, idiomatic Rust types.

Quick Start

use xmtp::{Client, Env};

let client = Client::builder()
    .env(Env::Dev)
    .db_path("./my.db3")
    .build(&my_signer)?;

// Send a message
let conv = client.create_dm("0xRecipient", xmtp::IdentifierKind::Ethereum)?;
conv.send(b"hello")?;