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

50 lines
1.1 KiB

6 years ago
[package]
authors = [
"Richard Newman <rnewman@twinql.com>",
"Nan Jiang <najiang@mozilla.com>",
"Myk Melez <myk@mykzilla.org>",
"Victor Porof <vporof@mozilla.com>",
]
categories = ["database"]
description = "A simple, humane, typed key-value storage solution"
documentation = "https://docs.rs/rkv"
edition = "2018"
exclude = ["/tests/envs/*"]
homepage = "https://github.com/mozilla/rkv"
keywords = ["lmdb", "database", "storage"]
license = "Apache-2.0"
name = "rkv"
readme = "README.md"
repository = "https://github.com/mozilla/rkv"
version = "0.17.1"
6 years ago
[features]
db-dup-sort = []
db-int-key = []
default = ["db-dup-sort", "db-int-key"]
no-canonicalize-path = []
with-asan = ["lmdb-rkv/with-asan"]
with-fuzzer = ["lmdb-rkv/with-fuzzer"]
with-fuzzer-no-link = ["lmdb-rkv/with-fuzzer-no-link"]
6 years ago
[dependencies]
arrayref = "0.3"
bincode = "1.0"
bitflags = "~1.2"
byteorder = "1"
id-arena = "2.2"
lazy_static = "1.1"
4 years ago
lmdb-rkv = "0.14"
log = "0.4.4"
ordered-float = "3.0.0"
paste = "1.0.6"
serde = {version = "1.0", features = ["derive", "rc"]}
serde_derive = "1.0"
thiserror = "1.0"
url = "2.0"
uuid = "0.8"
[dev-dependencies]
byteorder = "1"
tempfile = "3"