-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (34 loc) · 1.1 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
[package]
name = "cfx-storage2"
version = "0.1.0"
edition = "2021"
[dependencies]
thiserror = "1"
auto_impl = "1.2"
#kvdb-rocksdb = { git = "https://github.com/Conflux-Chain/parity-common-rocksdb", rev = "3fcd845", version = "0.19.0" }
#kvdb = { git = "https://github.com/Conflux-Chain/parity-common-rocksdb", rev = "3fcd845" }
kvdb-rocksdb = { git = "https://github.com/Conflux-Chain/parity-common-rocksdb", rev = "97c45dc", version = "0.17.0" }
kvdb = { git = "https://github.com/Conflux-Chain/parity-common-rocksdb", rev = "97c45dc" }
parking_lot = "0.12"
tinyvec = "1.8"
ark-ec = "0.5"
ark-ff = "0.5"
ark-poly = "0.5"
ark-serialize = "0.5"
ark-bls12-381 = "0.5"
ark-std = "0.5"
ethereum-types = "0.12"
blake2 = "0.10"
slab = "0.4.9"
static_assertions = "1.1.0"
itertools = "0.13"
proptest = "1.5"
amt = { git = "https://github.com/Conflux-Chain/amt", rev = "828c4c6", features = ["bls12-381"] }
[dev-dependencies]
rand = "0.8.0"
rand_distr = "0.4.0"
rand_chacha = "0.2.1"
once_cell = "1.19"
[features]
default = ["parallel-crypto"]
parallel-crypto = ["ark-poly/parallel", "ark-ec/parallel", "amt/parallel"]