view Cargo.toml @ 39:e84d6d9ab29d

Export filter module.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 11 Mar 2018 11:29:29 +0100
parents c06ac66ff2db
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"