grapevine 0.1.3

A simple peer-to-peer gossip protocol handler
Documentation
//! Grapevine - A simple peer-to-peer gossip protocol handler.

#![forbid(
    arithmetic_overflow,
    mutable_transmutes,
    no_mangle_const_items,
    unknown_crate_types
)]
#![warn(
    bad_style,
    deprecated,
    improper_ctypes,
    missing_docs,
    non_shorthand_field_patterns,
    overflowing_literals,
    stable_features,
    unconditional_recursion,
    unknown_lints,
    unsafe_code,
    unused,
    unused_allocation,
    unused_attributes,
    unused_comparisons,
    unused_features,
    unused_parens,
    while_true,
    clippy::unicode_not_nfc,
    clippy::unwrap_used,
    trivial_casts,
    trivial_numeric_casts,
    unused_extern_crates,
    unused_import_braces,
    unused_qualifications
)]

/// Connection information about peers
pub mod connection;
/// Error types
pub mod error;
/// Utility for testing
pub mod logger;
/// Functionality of a peer-to-peer node in the network
pub mod node;

/// Result wrapper
pub type Result<T> = std::result::Result<T, error::Error>;