forked from mozilla/lmdb-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (52 loc) · 1.6 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "lmdb-rkv"
version = "0.15.1"
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"]
license = "Apache-2.0"
description = "Idiomatic and safe LMDB wrapper."
documentation = "https://docs.rs/lmdb-rkv"
homepage = "https://github.com/mozilla/lmdb-rs"
repository = "https://github.com/mozilla/lmdb-rs.git"
readme = "README.md"
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database"]
publish = false
exclude = [
# Exclude CI config files from package.
"/.appveyor.yml",
"/.travis.yml",
"/azure-pipelines-template.yml",
"/azure-pipelines.yml",
]
[lib]
name = "lmdb"
[badges]
travis-ci = { repository = "mozilla/lmdb-rs" }
appveyor = { repository = "mozilla/lmdb-rs" }
[workspace]
members = [
"lmdb-sys",
]
[dependencies]
bitflags = "1"
byteorder = "1"
libc = "0.2"
# In order to ensure that we test lmdb-rkv in CI against the in-tree version
# of lmdb-rkv-sys, we specify the dependency as a path here.
#
# But we can't publish the lmdb-rkv crate to crates.io with a path dependency,
# so we have to temporarily change this to point to the current version
# of lmdb-rkv-sys on crates.io when publishing lmdb-rkv to that crate registry.
#
# (See "Publishing to crates.io" in README.md for more information.)
lmdb-rkv-sys = { path = "./lmdb-sys" }
[dev-dependencies]
rand = "0.4"
tempdir = "0.3"
[features]
default = []
vendored = ["lmdb-rkv-sys/vendored"]
posix-sem = ["lmdb-rkv-sys/posix-sem"]
with-asan = ["lmdb-rkv-sys/with-asan"]
with-fuzzer = ["lmdb-rkv-sys/with-fuzzer"]
with-fuzzer-no-link = ["lmdb-rkv-sys/with-fuzzer-no-link"]