docs.rs failed to build tinycdb-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
tinycdb-0.0.7
tinycdb-rs
This project consists of Rust bindings to tinycdb, a small library for creating and reading constant key-value databases.
Example
Add this to your Cargo.toml:
[dependencies.tinycdb]
git = "https://github.com/andrew-d/tinycdb-rs"
Then, in your crate:
extern crate tinycdb;
use Cdb;
Reading a database:
let path = new;
let mut db = match open ;
match db.find ;
Creating a database:
let path = new;
let res = new;
let mut db = match res ;
// Now, use 'db' as normal...
License
MIT (the original code of TinyCDB is in the public domain)