view Cargo.toml @ 28:8fe35754a39d

Add missing files (forgot to track them before)
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 03 Jan 2017 19:45:33 +0100
parents d380295dba2f
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"