xmpp_core/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) core
10//! spec defined in [RFC 6210].
11//!
12//! If you are using XMPP for instant messaging, see the [xmpp-im] crate.
13//!
14//! [RFC 6120]: https://tools.ietf.org/html/rfc6120
15//! [xmpp-im]: https://crates.io/crates/xmpp-im
16
17#![deny(missing_docs)]
18#![doc(html_root_url = "https://docs.rs/xmpp-im/0.0.0")]