An ergonomic, strongly typed CouchDB client in Rust.
This library includes both synchronous and asynchronous APIs for the programmer who wants to have it all.
Couldn't find a decent, maintained CouchDB client in Rust. Also I wanted async. So i rolled my own.
This is still in active development, in the sense that I add things when I need them, and fix bugs when they affect me directly. Would be thrilled to have a couple more sets of eyes and keyboards chipping away at this. climb aboard.
```rust use chesterfield::{Error, sync::Client, GetResponse}; use serde::Deserialize;
// use your own concrete types
struct MyConcreteStruct {}
let client = Client::new("https://localhost:5984").unwrap(); let database = client.database("items").unwrap(); let docid = "someunique_id";
match database
.get(docid)
.send()
.map(GetResponse::
```
```rust use chesterfield::{Error, r#async::Client, GetResponse}; use serde::Deserialize; use tokio::prelude::Future;
struct MyConcreteStruct {}
let client = Client::new("https://localhost:5984").unwrap(); let database = client.database("items").unwrap(); let docid = "someuniqueid".tostring();
let fut = database .get(docid) .send() .map(GetResponse::intoinner) .map(| document: MyConcreteStruct | { // do something with your struct }) .map_err(|e| println!("{}", e));
tokio::run(fut);
```
bash
cargo build
"oh my gosh so easy!"
bash
cargo test
"sham-wow!"
bash
cargo doc --open
"kersplash!"
bash
cargo contribute
"bullseye!"
Current version: 0.0.0
License: Apache-2.0