forked from mozilla/rkv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1013 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "rkv"
version = "0.9.6"
authors = ["Richard Newman <[email protected]>", "Nan Jiang <[email protected]>", "Myk Melez <[email protected]>"]
description = "a simple, humane, typed Rust interface to LMDB"
license = "Apache-2.0"
homepage = "https://github.com/mozilla/rkv"
repository = "https://github.com/mozilla/rkv"
readme = "README.md"
keywords = ["lmdb", "database", "storage"]
categories = ["database"]
edition = "2018"
exclude = ["/tests/envs/*"]
[features]
default = []
backtrace = ["failure/backtrace", "failure/std"]
[dependencies]
arrayref = "0.3"
bincode = "1.0"
bitflags = "1"
byteorder = "1"
lazy_static = "1.0.2"
lmdb-rkv = "0.11.4"
ordered-float = "1.0"
uuid = "0.7"
serde = "1.0"
serde_derive = "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.2"
default_features = false
features = ["derive"]
[dev-dependencies]
byteorder = "1"
tempfile = "3"