Skip to content

A native RethinkDB driver written in Rust

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

Fimasik/reql

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RethinkDB Driver

This is a RethinkDB driver written in Rust.

Build Status Latest Version Docs

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.

Getting Started

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();
}

License

Licensed under either of

Contribution

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.

About

A native RethinkDB driver written in Rust

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 99.8%
  • Nix 0.2%