/*!
Rust implementation of the [Tox protocol](https://zetok.github.io/tox-spec).
Repo: https://github.com/tox-rs/tox
*/#![type_length_limit="2097152"]#![forbid(unsafe_code)]#![doc(html_logo_url ="https://raw.githubusercontent.com/tox-rs/logo/master/logo.png")]// Remove it when it will be fixed in nom parser
#![allow(clippy::redundant_closure)]#[macro_use]externcrate log;#[macro_use]externcrate nom;#[macro_use]externcrate cookie_factory;#[macro_use]moderror;pubmodio_tokio;pubmodtime;pubmodstate_format;pubmodrelay;pubmoddht;pubmodonion;pubmodnet_crypto;pubmodutils;pubmodfriend_connection;pubmodstats;