Ergonomic Rust SDK for the [XMTP](https://xmtp.org) messaging protocol.
Wraps the `xmtp-sys` FFI bindings with safe, idiomatic Rust types.
```rust,ignore
use xmtp::{Client, Env};
let client = Client::builder()
// Send a message
let conv = client.create_dm("0xRecipient", xmtp::IdentifierKind::Ethereum)?;
conv.send(b"hello")?;
```