-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (74 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
91 lines (74 loc) · 1.43 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "signet-libmdbx"
description = "Idiomatic and safe MDBX wrapper"
version = "0.8.2"
edition = "2024"
rust-version = "1.92"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/init4tech/mdbx"
repository = "https://github.com/init4tech/mdbx"
readme = "README.md"
keywords = ["mdbx", "lmdb", "database", "key-value", "embedded-database"]
categories = ["database-implementations"]
[profile.release]
opt-level = 3
lto = "thin"
debug = "line-tables-only"
strip = true
panic = "unwind"
codegen-units = 16
[profile.profiling]
inherits = "release"
debug = 2
strip = false
[profile.bench]
inherits = "profiling"
[profile.ci-rust]
inherits = "dev"
strip = true
debug = false
incremental = false
[dependencies]
signet-mdbx-sys= { version = "0.1.0", path = "mdbx-sys" }
bitflags = "2.10.0"
byteorder = "1.5.0"
parking_lot = "0.12.5"
smallvec = "1.15.1"
thiserror = "2.0.18"
tracing = "0.1.44"
[dev-dependencies]
criterion = "0.8.1"
libc = "0.2"
proptest = "1"
rand = "0.9.2"
tempfile = "3.20.0"
[[bench]]
name = "cursor"
harness = false
[[bench]]
name = "db_open"
harness = false
[[bench]]
name = "transaction"
harness = false
[[bench]]
name = "iter"
harness = false
[[bench]]
name = "deletion"
harness = false
[[bench]]
name = "cursor_write"
harness = false
[[bench]]
name = "reserve"
harness = false
[[bench]]
name = "nested_txn"
harness = false
[[bench]]
name = "concurrent"
harness = false
[[bench]]
name = "scaling"
harness = false