diff options
| author | Max Audron <audron@cocaine.farm> | 2021-01-02 19:57:45 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2021-01-02 19:57:45 +0100 |
| commit | 873310475d60676891a41aaa480d15422d002ad9 (patch) | |
| tree | e5bd54c8febcb740c472557433f6293d2cd77095 /src/lib.rs | |
| parent | rework handshakemessage parsing (diff) | |
update dependencies
Diffstat (limited to '')
| -rw-r--r-- | src/lib.rs | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -1,25 +1,32 @@ +#![feature(external_doc)] +#![feature(doc_cfg)] +#![doc(include = "../README.md")] +#[cfg_attr(docsrs, feature(doc_cfg))] #[macro_use] mod util; -#[cfg(feature = "client")] -pub mod client; - #[cfg(test)] pub mod tests; #[macro_use] extern crate failure; +/// Quassel Structures for serialization and deserialization pub mod message; + +/// Quassels QT based primitive types that make up the more complex messages pub mod primitive; pub mod session; #[allow(dead_code)] +/// Error Types pub mod error; #[allow(unused_variables, dead_code)] #[cfg(feature = "framing")] +#[cfg_attr(docsrs, doc(cfg(feature = "framing")))] +/// Framing impl to be used with [`tokio_util::codec::Framed`] pub mod frame; use failure::Error; |
