docs.rs failed to build memcache-0.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: memcache-0.17.2

rust-memcache

Memcached client for rust.

Usage

let mut conn = Connection::connect("localhost", 2333).unwrap();

conn.set("foo", "bar", 0).unwrap();
assert!{ conn.get("foo").unwrap().unwrap().as_slice() == "bar" };