-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 1017 Bytes
/
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
homepage = "https://github.com/wtdcode/mdbx-remote"
repository = "https://github.com/wtdcode/mdbx-remote"
[workspace.dependencies]
reth-libmdbx = {git = "https://github.com/paradigmxyz/reth", rev = "v1.1.0" }
tarpc = {version = "0.34"}
tokio = {version = "1.0", features = ["full"]}
serde = {version = "1.0"}
thiserror = "1.0"
tracing = "0.1.0"
tracing-subscriber = "0.3"
parking_lot = "0.12"
smallvec = "1"
derive_more = { version = "1", features = ["full"] }
bitflags = "2.4"
dashmap = "6.0"
async-stream = "0.3"
tokio-stream = "0.1"
url = "2.0"
paste = "1.0"
pprof = "0.13"
rand = "0.8.5"
tempfile = "3.8"
criterion = "0.5"
futures-util = "0.3"
libmdbx-remote = {version = "0.3", path = "crates/mdbx-remote", default-features = false}
mdbx = {version = "0.1", path = "crates/mdbx", default-features = false}
mdbx-remote-sys = {version = "0.3", path = "crates/mdbx-remote/mdbx-sys", default-features = false}