xmpp_im/lib.rs
1// Copyright 2017 The Mellium Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9//! This will be an implementation of the Extensible Messaging and Presence Protocol (XMPP) instant
10//! messaging profile defined in [RFC 6121].
11//!
12//! If you are using XMPP for simple device-to-device communications and do not need IM, see the
13//! [xmpp-core] crate.
14//!
15//! [RFC 6121]: https://tools.ietf.org/html/rfc6121
16//! [xmpp-core]: https://crates.io/crates/xmpp-core
17
18#![deny(missing_docs)]
19#![doc(html_root_url = "https://docs.rs/xmpp-im/0.0.0")]