forked from triasteam/conflux-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.16 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
[package]
name = "conflux"
version = "0.1.0"
edition = "2018"
[dependencies]
mio = "0.6.8"
clap = "2"
term_size = "0.3"
textwrap = "0.9"
toml = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
parking_lot = "0.6"
panic_hook = { git = "https://github.com/Conflux-Chain/conflux-parity-deps.git" }
io = { path = "util/io" }
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
jsonrpc-core = "10.1.0"
jsonrpc-macros = "10.1.0"
jsonrpc-tcp-server = "10.1.0"
jsonrpc-http-server = "10.1.0"
error-chain = { version = "0.12" }
log = "0.4"
ethereum-types = "0.4"
slab = "0.2"
cfxcore = { path = "core" }
network = { path = "network" }
db = { path = "db" }
blockgen = { path = "blockgen" }
txgen = { path = "transactiongen" }
secret-store = { path = "secret_store" }
primitives = { path = "primitives" }
log4rs = "0.8.1"
rlp = "0.3.0"
keccak-hash = "0.1.2"
rand = "0.5"
kvdb-rocksdb = "0.1.3"
client = { path = "client" }
# Use workspace section to allow test all cases under root folder (cargo test --all).
[workspace]
[patch.crates-io]
heapsize = { git = "https://github.com/cheme/heapsize.git", branch = "ec-macfix" }
kvdb-rocksdb = {path = "./db/src/kvdb-rocksdb"}