Crate tokio_xmpp

source ·
Expand description

Low-level XMPP decentralized instant messaging & social networking implementation with asynchronous I/O using tokio.

For an easier, batteries-included experience, try the xmpp crate.

§Getting started

In most cases, you want to start with a Client, that will connect to a server over TCP/IP with StartTLS encryption. Then, you can build an event loop by calling the client’s next method repeatedly. You can find a more complete example in the examples/echo_bot.rs file in the repository.

§Features

This library is not feature-complete yet. Here’s a quick overview of the feature set.

Supported implementations:

  • Clients
  • Components
  • Servers

Supported transports:

§More information

You can find more information on our website xmpp.rs or by joining our chatroom chat@xmpp.rs.

Re-exports§

Modules§

  • ServerConnector provides streams for XMPP clients
  • Detailed error types
  • Low-level stream establishment

Structs§

  • XMPP client connection and state
  • Componentinsecure-tcp
    Component connection to an XMPP server

Enums§

  • Generic tokio_xmpp Error Top-level error type
  • High-level event on the Stream implemented by Client and Component