couchbase-0.3.0 has been yanked.
Visit the last successful build:
couchbase-1.0.0-beta.1
This crate represents the official, yet under heavy development, Rust SDK for Couchbase.
It is based on the couchbase_sys-crate, which in turn consists of Rust bindings to the
libcouchbase c-library.
Examples
Reading and writing a Document is simple:
extern crate couchbase;
extern crate futures;
use ;
use BinaryDocument;
use Future;
/// A very simple example which connects to the `default` bucket and writes and loads
/// a document.
For now, more examples can be found under examples. Note that for all the serde-based
examples you need to at least have Rust 1.15.0 installed.