-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (68 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
72 lines (68 loc) · 1.66 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
[package]
name = "varvedb"
version = "0.4.2"
edition = "2021"
autobenches = false
license = "MPL-2.0"
authors = ["Matheus Cardoso <varvedb@matheus.sbs>"]
description = "A high-performance, embedded, append-only event store for Rust."
repository = "https://github.com/Cardosaum/varvedb"
documentation = "https://docs.rs/varvedb"
homepage = "https://github.com/Cardosaum/varvedb"
keywords = ["event-store", "database", "embedded", "event-sourcing", "lmdb"]
categories = ["database-implementations", "data-structures"]
rust-version = "1.81.0"
exclude = [
".github",
".gitignore",
"deny.toml",
"scripts",
"book",
"images",
"tests",
"benches",
"fuzz",
"issues",
]
[features]
default = []
log = ["tracing", "tracing-subscriber"]
log_trace = ["log"]
log_debug = ["log"]
log_info = ["log"]
log_warn = ["log"]
log_error = ["log"]
debug_eprintln = []
serde = ["dep:serde"]
notify = ["dep:event-listener"]
snapshot = []
[dependencies]
heed = "0.22.0"
ouroboros = "0.18.5"
rkyv = "0.8.12"
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "2.0.17"
tracing = { version = "0.1", features = [
"log",
"release_max_level_info",
], optional = true }
tracing-subscriber = { version = "0.3.22", features = [
"env-filter",
], optional = true }
event-listener = { version = "5.3", optional = true }
[dev-dependencies]
tempfile = "3.10.0"
criterion = "0.5.1"
proptest = "1.4.0"
bytecheck = "0.8.2"
rstest = "0.26.1"
rstest_reuse = "0.7.0"
hdrhistogram = "7.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
pollster = "0.4"
[[bench]]
name = "varvedb_benchmarks"
harness = false
path = "benches/main.rs"