view Cargo.toml @ 433:9d8aae30be98

cmp: Make memtable key comparisons ~4x faster. Similar to the internal key comparison improvement: Only parse expensive FixedInts when required. This change brings rusty-leveldb within 10% of the original for write-heavy workloads and 25% for iterating workloads.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 22 Oct 2017 09:42:19 +0200
parents 70614b22aeae
children b09db8d3d60c
line wrap: on
line source

[package]
name = "rusty-leveldb"
version = "0.1.4"
authors = ["Lewin Bormann <lbo@spheniscida.de>"]
description = "A compatible re-implementation of LevelDB in Rust"
repository = "https://bitbucket.org/dermesser/leveldb-rs"
readme = "README.md"
keywords = ["LevelDB", "key-value", "database", "SSTable", "Google"]
license = "MIT"
publish = true

[dependencies]
crc = "1.2"
integer-encoding = "1.0"
libc = "0.2"
rand = "0.3"
snap = "0.2"

[dev-dependencies]
time-test = "0.2"

[workspace]
members = ["examples/write-a-lot", "examples/leveldb-tool"]