view Cargo.toml @ 34:5449b2eb7265

Bump version -> 0.4.2 This bump contains a more efficient implementation of TableReader::get().
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 26 Feb 2017 09:28:35 +0100
parents f4caa5af5b93
children c06ac66ff2db
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 has some infrastructure to support bloom filters, but doesn't yet make use of it. It also features checksums and skipping bad blocks."
version = "0.4.2"
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"