tilper 0.0.3

A Simple NoSQL Database Written in Rust.
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 6 items with examples
  • Size
  • Source code size: 3.4 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.29 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • pedroall/tilper
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pedroall

Commands

Install

cargo install tilper

Test

cargo test

Example

Creating a database and passing some values

use tilper::db::{Database};

fn main() {
  let mut db = Database::new();
  let data = db
    .set("foo".to_string(), "bar".to_string()).unwrap()
    .get("foo").unwrap();
  assert_eq!("far", data); // Panic
}