An open API service indexing awesome lists of open source software.

https://github.com/rustbase/rustbase-rs


https://github.com/rustbase/rustbase-rs

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Rustbase Client Library for Rust
A driver to use Rustbase with Rust.

# Installation
```toml
[dependencies]
rustbase-rs = "0.1.0"
```

# Usage
```rust
async fn main() {
let mut client = RustbaseClient::new("localhost:23561").await.unwrap();
client.set_database("test");

let document = client.get("key1").unwrap();
}
```