-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (79 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
members = [
"cmd",
"common",
"core",
"encrypt",
"levelctl",
"memtable",
"skip_list",
"sstable",
"traits",
"vlog",
"wal",
]
resolver = "2"
[workspace.package]
authors = ["chenshiming <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
version = "0.1.0"
[workspace.lints.clippy]
# Detects large stack-allocated futures that may cause stack overflow crashes (see threshold in clippy.toml)
large_futures = "warn"
[workspace.lints.rust]
unused_imports = "deny"
[workspace.dependencies]
morsdb = { path = "core", version = "0.1" }
mors-memtable = { path = "memtable", version = "0.1" }
mors-sstable = { path = "sstable", version = "0.1" }
mors-common = { path = "common", version = "0.1" }
mors-traits = { path = "traits", version = "0.1" }
mors-skip_list = { path = "skip_list", version = "0.1" }
mors-encrypt = { path = "encrypt", version = "0.1" }
mors-wal = { path = "wal", version = "0.1" }
mors-levelctl = { path = "levelctl", version = "0.1" }
mors-vlog = { path = "vlog", version = "0.1" }
aes-gcm = { version = "0.10" }
aes-gcm-siv = { version = "0.11.1" }
ahash = "0.8"
aead = "0.5.2"
async-channel = "2.0.0"
bitflags = "2.6.0"
bytes = "1.7.1"
bytesize = "1.3.0"
crc32fast = "1.3"
criterion = "0.5"
either = "1.9.0"
env_logger = "0.11.5"
flatbuffers = "24"
flatc-rust = "0.2.0"
getrandom = "0.2.10"
integer-encoding = "4.0.2"
lazy_static = "1.4.0"
libc = "0.2.158"
log = "0.4"
moka = { version = "0.12.1", features = ["sync", "future"] }
memmap2 = "0.9"
num_cpus = "1.16.0"
parking_lot = "0.12.1"
pretty-hex = "0.4.1"
prost = "0.13.2"
prost-build = "0.13.2"
proptest = "1.5.0"
rand = "0.8.5"
rayon = "1.8.0"
rustix = "0.38.36"
scopeguard = "1.2.0"
smallvec = "1.11.1"
snap = "1.1.0"
sha2 = "0.10"
tabled = "0.16.0"
tempfile = "3.12.0"
thiserror = "1.0.63"
tokio = { version = "1.40", features = ["full"] }
tokio-util = "0.7.12"
tracing = "0.1.37"
xxhash-rust = { version = "0.8.12", features = ["xxh64", "xxh3"] }
zstd = "0.13"