tox_core/
lib.rs

1/*!
2Rust implementation of the [Tox protocol](https://zetok.github.io/tox-spec).
3
4Repo: https://github.com/tox-rs/tox
5
6*/
7
8#![type_length_limit="2097152"]
9#![forbid(unsafe_code)]
10#![doc(html_logo_url = "https://raw.githubusercontent.com/tox-rs/logo/master/logo.png")]
11// Remove it when it will be fixed in nom parser
12#![allow(clippy::redundant_closure)]
13
14#[macro_use]
15extern crate log;
16#[macro_use]
17extern crate nom;
18#[macro_use]
19extern crate cookie_factory;
20
21#[macro_use]
22mod error;
23pub mod io_tokio;
24pub mod time;
25pub mod state_format;
26pub mod relay;
27pub mod dht;
28pub mod onion;
29pub mod net_crypto;
30pub mod utils;
31pub mod friend_connection;
32pub mod stats;