[package]
edition = "2021"
name = "rcask"
version = "0.1.0"
authors = ["Ashwin Pugalia"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitcask inspired in-memory log structured hash table."
homepage = "https://github.com/Ashwin-1709/rcask"
readme = "README.md"
keywords = [
"key-store",
"hash-table",
"log-structured",
"bitcask",
]
categories = [
"caching",
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/Ashwin-1709/rcask"
[lib]
name = "rcask"
path = "src/lib.rs"
[[bin]]
name = "rcask"
path = "src/main.rs"
[dependencies]