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
763 B

[package]
name = "rkv"
version = "0.3.0"
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"
[features]
default = []
backtrace = ["failure/backtrace", "failure/std"]
[dependencies]
arrayref = "0.3"
bincode = "0.9"
lazy_static = "1.0"
lmdb = "0.7"
ordered-float = "0.5"
uuid = "0.5"
serde = "1.0"
url = "1.7.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]
byteorder = "1"
tempfile = "3"