A simple, humane, typed key-value storage solution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rkv/Cargo.toml

33 lines
735 B

6 years ago
[package]
6 years ago
name = "rkv"
version = "0.2.0"
6 years ago
authors = ["Richard Newman <rnewman@twinql.com>"]
description = "A humane key-value store built on LMDB."
license = "Apache-2.0"
homepage = "https://github.com/mozilla-prototypes/rkv"
repository = "https://github.com/mozilla-prototypes/rkv"
6 years ago
[features]
default = []
backtrace = ["failure/backtrace", "failure/std"]
6 years ago
[dependencies]
arrayref = "0.3"
bincode = "0.9"
lazy_static = "1.0"
6 years ago
lmdb = "0.7"
6 years ago
ordered-float = "0.5"
6 years ago
uuid = "0.5"
serde = "1.0"
# Get rid of failure's dependency on backtrace. Eventually
# backtrace will move into Rust core, but we don't need it here.
[dependencies.failure]
version = "0.1"
default_features = false
features = ["derive"]
[dev-dependencies]
6 years ago
tempdir = "0.3"