zif_net 0.1.0

The network transport layer for Zif
Documentation
extern crate tiny_http;

extern crate zif_identity;

pub mod errors;
pub mod address;
pub mod post;
pub mod postbox;
pub mod net_listener;
pub mod net_client;

pub mod http_listener;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}