Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
Update metadata
  • Loading branch information
roynrishingha committed Jun 9, 2023
1 parent 3571761 commit 75cc100
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "lsmdb"
description = "LSM Tree based Storage Engine"
description = "lsmdb is an efficient storage engine that implements the Log-Structured Merge Tree (LSM-Tree) data structure, designed specifically for handling key-value pairs."
authors = ["Nrishinghananda Roy <[email protected]>"]
version = "0.1.0"
version = "0.3.0"
categories = ["data-structures", "database-implementations"]
keywords = ["database", "key-value-store", "key-value", "kv", "db"]
repository = "https://github.com/roynrishingha/lsmdb"
documentation = "https://docs.rs/lsmdb/"
license = "MIT OR Apache-2.0"
readme = "README.md"
publish = true
edition = "2021"


[badges]
maintenance = { status = "experimental" }
[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]

[lib]
path = "src/lib.rs"
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# LSM Tree Storage Engine
# LSMDB

Log-Structured merge tree is an append-friendly data structure to maintain key-value pairs.
[<img alt="github" src="https://img.shields.io/badge/github-roynrishingha/lsmdb-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/roynrishingha/lsmdb)
[<img alt="crates.io" src="https://img.shields.io/crates/v/lsmdb.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](https://crates.io/crates/lsmdb)
[<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-lsmdb-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" height="20">](https://docs.rs/lsmdb)

lsmdb is an efficient storage engine that implements the Log-Structured Merge Tree (LSM-Tree) data structure, designed specifically for handling key-value pairs.

## Components of LSM Tree

Expand Down

0 comments on commit 75cc100

Please sign in to comment.