20 lines
342 B
Rust
20 lines
342 B
Rust
//! Networking code for Zebra. 🦓
|
|
|
|
#![deny(missing_docs)]
|
|
|
|
#[macro_use]
|
|
extern crate failure;
|
|
#[macro_use]
|
|
extern crate tracing;
|
|
|
|
mod network;
|
|
pub use network::Network;
|
|
|
|
pub mod protocol;
|
|
pub mod types;
|
|
|
|
// XXX make this private once connect is removed
|
|
pub mod meta_addr;
|
|
// XXX make this private once connect is removed
|
|
pub mod constants;
|