-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
74 lines (61 loc) · 2 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
[workspace]
members = [
"benchmarks",
"asb-backend",
"asb-options",
"asb-profile",
"asb-authdb",
"asb-tasks",
"asb-authdb/lvmt-db/ppot2ark"
]
default-members = ["benchmarks"]
[workspace.dependencies]
################
# ASB modules
################
asb-authdb = { path = "asb-authdb" }
asb-options = { path = "asb-options" }
asb-backend = { path = "asb-backend" }
asb-profile = { path = "asb-profile" }
asb-tasks = { path = "asb-tasks" }
#######################
# Key-value Database
#######################
# Interfaces
kvdb = "0.4"
kvdb07 = { package="kvdb",version="0.7" }
# Backend Implementations
kvdb-memorydb = "0.4.0"
libmdbx = "0.1.12"
# Utils
malloc_size_of = { git = "https://github.com/Conflux-Chain/conflux-rust.git", rev = "9de2cc9"}
malloc_size_of_derive = { git = "https://github.com/Conflux-Chain/conflux-rust.git", rev = "9de2cc9"}
parity-util-mem = "0.5.2"
stats = { path = "asb-backend/parity-stats", package = "parity-stats" }
###########################
# Authenticated Database
###########################
# Interface
authdb = { path = "asb-authdb/authdb-trait", package = "authdb-trait" }
# AuthDB implementations
lvmt-db = { path = "asb-authdb/lvmt-db", features = ["large_lvmt"] }
parity-journaldb = { path = "asb-authdb/parity-journaldb" }
patricia-trie-ethereum = { path = "asb-authdb/patricia-trie-ethereum" }
rainblock-trie = { path = "asb-authdb/rainblock-trie" }
# Utils
parity-scale-codec = "1.3.5"
keccak-hasher = { git="https://github.com/openethereum/openethereum.git", rev="2ae2949" }
blake2-hasher = { path = "asb-authdb/blake2-hasher" }
hash-db = "0.11.0"
trie-db = "0.11.0"
###########
# Types
###########
cfx-primitives = { package ="primitives", git = "https://github.com/Conflux-Chain/conflux-rust.git", rev = "9de2cc9", features = ["test_no_account_length_check"]}
cfx-types = { git = "https://github.com/Conflux-Chain/conflux-rust.git", rev = "9de2cc9"}
primitive-types = "0.7.3"
###########
# Others
###########
lazy_static = "1.4.0"
tokio = "0.2.25"