-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
76 lines (63 loc) · 2.17 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
[package]
name = "abciapp"
version = "0.2.11"
authors = ["FindoraNetwork"]
build = "build.rs"
edition = "2021"
[[bin]]
name = "findorad"
path = "src/bins/findorad.rs"
[[bin]]
name = "abcid"
path = "src/bins/abcid.rs"
[dependencies]
parking_lot = "0.12"
base64 = "0.13"
bincode = "1.3.1"
tracing = "0.1"
rand = "0.8"
rand_chacha = "0.3"
rand_core = { version = "0.6", default-features = false, features = ["alloc"] }
attohttpc = { version = "0.23", default-features = false, features = ["compress", "json", "tls-rustls"] }
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.40"
lazy_static = "1.4.0"
futures = { version = "0.3.16", features = ["thread-pool"] }
hex = "0.4.3"
ctrlc = { version = "=3.2.5", features = ["termination"] }
protobuf = "2.16"
toml = "0.5.8"
regex = "1"
clap = "2.33.3"
actix-cors = "0.5.4"
actix-rt = "1.1.0"
actix-service = "1.0.6"
actix-web = "3.3.2"
percent-encoding = "2.1.0"
nix = "0.22.1"
zei = { package="platform-lib-noah", git = "https://github.com/FindoraNetwork/platform-lib-noah", branch = "develop" }
ruc = { version = "1.0.5", default-features = false, features = ["compact"] }
abci = { git = "https://github.com/FindoraNetwork/tendermint-abci", tag = "0.7.6" }
config = { path = "../config"}
ledger = { path = "../../ledger" }
globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "develop" }
cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", branch = "develop" }
finutils = { path = "../finutils" }
tempfile = "3.1.0"
baseapp = { path = "../contracts/baseapp" }
fc-rpc = { path = "../contracts/rpc" }
fp-storage = { path = "../contracts/primitives/storage" }
fp-utils = { path = "../contracts/primitives/utils" }
fp-types = {path = "../contracts/primitives/types"}
enterprise-web3 = { path = "../contracts/primitives/enterprise-web3" }
module-evm = { path = "../contracts/modules/evm"}
[target.'cfg(target_os= "linux")'.dependencies]
btm = "0.1.6"
[dev-dependencies]
[build-dependencies]
vergen = "=3.1.0"
[features]
default = ["diskcache"]
diskcache = ["ledger/diskcache"]
debug_env = ["ledger/debug_env", "config/debug_env", "baseapp/debug_env"]
benchmark = ["baseapp/benchmark"]