// Copyright 2015-2019 Parity Technologies (UK) Ltd. // This file is part of Parity Ethereum. // Parity Ethereum is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity Ethereum is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity Ethereum. If not, see . //! Whisper P2P messaging system as a DevP2P subprotocol, with RPC and Rust //! interface. #![cfg_attr(feature = "time_checked_add", feature(time_checked_add))] #![allow(deprecated)] extern crate byteorder; extern crate ethcore_network as network; extern crate ethereum_types; extern crate ethkey; extern crate hex; extern crate memzero; extern crate ordered_float; extern crate parity_crypto as crypto; extern crate parking_lot; extern crate rand; extern crate rlp; extern crate serde; extern crate slab; extern crate smallvec; extern crate tiny_keccak; extern crate jsonrpc_core; extern crate jsonrpc_derive; extern crate jsonrpc_pubsub; #[macro_use] extern crate bitflags; #[macro_use] extern crate log; extern crate serde_derive; #[cfg(not(time_checked_add))] extern crate time_utils; #[cfg(test)] extern crate serde_json; pub use self::{ message::Message, net::{MessageHandler, Network}, }; pub mod message; pub mod net; pub mod rpc;