view Cargo.toml @ 35:c06ac66ff2db v0.4.3

Update crate description.
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 12 Aug 2017 09:07:41 +0200
parents 5449b2eb7265
children 2452c9af0021
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."
version = "0.4.3"
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"