net_utils/lib.rs
1// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! Net-utils library provides a configurable TCP/SSL client connection pool
12//! A simple, connection pool library.
13#![crate_name = "net_utils"]
14#![crate_type = "lib"]
15#![warn(missing_docs)]
16// #![allow(unstable)]
17#![allow(unused_must_use)]
18#[cfg(feature = "ssl")]
19extern crate openssl;
20#[macro_use]
21extern crate serde_derive;
22#[macro_use]
23extern crate log;
24extern crate time;
25extern crate uuid;
26/// module net provides the TCP/SSL connection and connection pool functionality
27pub mod net;