Crates.io | xmpp-derive |
lib.rs | xmpp-derive |
version | 0.1.3 |
source | src |
created_at | 2017-05-11 09:42:23.776929 |
updated_at | 2017-05-11 09:42:23.776929 |
description | xmpp-rs is an implementation of the Extensible Messaging and Presence Protocol (XMPP). Based on tokio-rs and futures-rs. It's goal is to be fully tested and usable. This library is splitted in 3 crates (client, server, proto). As defined by the naming, you can use every crate independently. xmpp-client: will allow you to build a client. xmpp-server: is an implementation of XMPP on server side. xmpp-rs: Grab both client and server in a single crate. |
homepage | |
repository | https://github.com/Freyskeyd/xmpp-rs |
max_upload_size | |
id | 14153 |
size | 10,500 |
xmpp-rs
is an XMPP client library (for now). Under active development.
This library is splitted in 3 crates (client
, server
, proto
). As defined by the naming, you can use every crate
independently.
xmpp-client
: will allow you to build a client.xmpp-server
: is an implementation of XMPP on server side.xmpp-rs
: Grab both client and server in a single crate.Cargo.toml
xmpp-rs = "0.1"
// Client
extern crate xmpp;
To build xmpp-rs:
cargo build --release
stream
stanza and respond to itxmpp-rs is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.