This is a RethinkDB driver written in Rust.
Note: While this driver is already usable in the current state, the API is not yet stable and many commands are not yet implemented. I recommend you pin to specific versions if you have to code against it. Also kindly submit an issue or pull request if the command you want is missing.
Add this crate to your dependencies section:-
[dependencies]
reql = "0.0.6-alpha4"
Import it in your main.rs
or lib.rs
:-
#[macro_use]
extern crate reql;
Run ReQL commands:-
#[macro_use]
extern crate reql;
use reql::commands::*;
use reql::Result;
fn run() -> Result<()> {
// Create the client
let r = Command::new();
}
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.