view Cargo.toml @ 94:7b43cb6b9666

Release v0.7.0 With multithreading-friendly types, thanks to @thomaskrause.
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 24 Feb 2020 13:17:14 +0100
parents 6fac68704a6f
children b46bf8bc18d4
line wrap: on
line source

[package]
name = "sstable"
description = "Sorted String Tables, an on-disk format for storing immutable maps consisting of string,string pairs, and retrieving values by key efficiently. This crate also features bloom filters, checksums and skipping bad blocks. It is based on the code implemented for the rusty_leveldb crate."
version = "0.7.0"
readme = "README.md"
keywords = ["sstable", "database"]
repository = "https://github.com/dermesser/sstable"
authors = ["Lewin Bormann <lbo@spheniscida.de>"]
license = "MIT"
documentation = "https://docs.rs/sstable"
edition = "2018"

[dependencies]
crc = "1.2"
integer-encoding = "1.0"
snap = "0.2"

[dev-dependencies]
time-test = "0.2"
bencher = "0.1"
rand = "0.7"

[[bench]]
name = "sstable"
harness = false

[workspace]
members = ["examples/rw_sstable"]