forked from vorot93/libmdbx-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
53 lines (44 loc) · 1.05 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
[package]
name = "libmdbx"
version = "0.1.4"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Victor Porof <vporof@mozilla.com>",
"Artem Vorotnikov <artem@vorotnikov.me>",
]
edition = "2021"
license = "Apache-2.0"
description = "Idiomatic and safe MDBX wrapper."
documentation = "https://docs.rs/libmdbx"
homepage = "https://github.com/vorot93/libmdbx-rs"
repository = "https://github.com/vorot93/libmdbx-rs"
readme = "README.md"
keywords = ["LMDB", "MDBX", "database", "storage-engine", "bindings"]
categories = ["database"]
[lib]
name = "libmdbx"
[workspace]
members = ["mdbx-sys"]
[dependencies]
bitflags = "1"
byteorder = "1"
derive_more = "0.99"
indexmap = "1"
libc = "0.2"
parking_lot = "0.12"
thiserror = "1"
ffi = { package = "mdbx-sys", version = "=0.11.6-4", path = "./mdbx-sys" }
lifetimed-bytes = { version = "0.1", optional = true }
[features]
cmake = ["ffi/cmake-build"]
[dev-dependencies]
criterion = "0.3"
rand = "0.8"
rand_xorshift = "0.3"
tempfile = "3"
[[bench]]
name = "cursor"
harness = false
[[bench]]
name = "transaction"
harness = false