anbar 0.1.0

A simple local database solution crate.
Documentation
  • Coverage
  • 39.02%
    16 out of 41 items documented0 out of 21 items with examples
  • Size
  • Source code size: 19.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 19s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • el-lob0/anbar
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • el-lob0

Rust crate for local database storage

-# This is a fork of (brudb)[https://github.com/AnasDEV2005/brudb.git]


Functionality:

This crate consists of 2 main structs; ColumnDB and SimpleDB.
SimpleDB is a simple 2 column key value storage solution. You can create files, add keys, values delete them, edit them.
While ColumnDB is for storing data with multiple columns. In addition to what is doable in SImpleDB, you can also add full rows and columns, select a certain range to make a new database, and delete rows or columns.


Doc

(wip)

Also read the example/src/main.rs for a better idea of functionality.