memcached/
lib.rs

1// Copyright (c) 2015 Y. T. Chung <zonyitoo@gmail.com>
2// Licensed under the Apache License, Version 2.0
3// <LICENSE-APACHE or
4// http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5// license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
6// at your option. All files in the project carrying such
7// notice may not be copied, modified, or distributed except
8// according to those terms.
9
10#![crate_type = "lib"]
11#![crate_name = "memcached"]
12#![allow(clippy::type_complexity)] // For `crate::proto::MemCachedResult<HashMap<Vec<u8>, (Vec<u8>, u32)>>`
13#![cfg_attr(feature = "nightly", feature(test))]
14#[cfg(feature = "nightly")]
15extern crate test;
16
17pub use client::Client;
18
19pub mod client;
20pub mod proto;