view Cargo.toml @ 26:d380295dba2f

Bump version -> 0.4
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 03 Jan 2017 19:33:28 +0100
parents be776a25b5e4
children f4caa5af5b93
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.0"
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"