view Cargo.toml @ 105:3dc5d8e21f50

Publish v0.8.2
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 26 Apr 2020 10:10:46 +0200
parents e1d2d449e543
children fc26b746ea54
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.8.2"
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"]