-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (76 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
79 lines (76 loc) · 1.94 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
[workspace]
resolver = "3"
members = ["crates/*", "tests", "fuzz"]
[workspace.package]
authors = ["Ari Seyhun <dev@tqwewe.com>"]
categories = ["database-implementations", "development-tools"]
description = "A high-performance, distributed event store designed for scalable event sourcing applications"
edition = "2024"
homepage = "https://github.com/tqwewe/sierradb"
keywords = ["database", "event-sourcing", "distributed", "redis", "event-store"]
license = "Apache-2.0"
repository = "https://github.com/tqwewe/sierradb"
version = "0.3.1"
[workspace.dependencies]
seglog = { path = "crates/seglog", version = "0.2.2" }
sierradb = { path = "crates/sierradb", version = "0.3.1" }
sierradb-cluster = { path = "crates/sierradb-cluster", version = "0.3.1" }
sierradb-protocol = { path = "crates/sierradb-protocol", version = "0.3.1" }
sierradb-topology = { path = "crates/sierradb-topology", version = "0.3.1" }
arc-swap = "1.8"
arrayvec = "0.7"
arbitrary = { version = "1.4", features = ["derive"] }
bloomfilter = "3.0"
bincode = "2.0"
boomphf = "0.6"
bytes = "1.11"
config = { version = "0.15", default-features = false, features = [
"convert-case",
"ini",
"json",
"json5",
"ron",
"toml",
"yaml",
] }
ciborium = "0.2"
clap = "4.5"
combine = "4.6"
crc32fast = "1.5"
criterion = "0.8"
directories = "6.0"
failsafe = "1.3"
futures = "0.3"
futures-util = "0.3"
indexmap = "2.12"
kameo = "0.19"
libc = "0.2"
libfuzzer-sys = "0.4"
libp2p = "0.56"
moka = "0.12"
nix = "0.31"
num_cpus = "1.17"
once_cell = "1.21"
polonius-the-crab = "0.5"
proptest = "1.9"
rand = "0.10"
rayon = "1.11"
redis = "1.0"
redis-protocol = { version = "6.0", features = [
"std",
"resp3",
"bytes",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
smallvec = "1.15"
strum = { version = "0.28", features = ["derive"] }
tempfile = "3.26"
tokio = "1.48"
tokio-util = "0.7"
thiserror = "2.0"
thread-priority = "3.0"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = "1.22"
zstd = "0.13"