view Cargo.toml @ 52:b557e42af582

Add Table::get() example to example program.
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 14 Mar 2018 20:39:00 +0100
parents 2247f47ea794
children deef5b97336d
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.5.1"
readme = "README.md"
keywords = ["sstable", "database"]
repository = "https://bitbucket.org/dermesser/sstable"
authors = ["Lewin Bormann <lbo@spheniscida.de>"]
license = "MIT"
documentation = "https://docs.rs/sstable"

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

[dev-dependencies]
time-test = "0.2"

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