-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.12 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
[workspace]
members = [".", "macro"]
[package]
name = "smart-bench"
version = "0.1.0"
edition = "2021"
[dependencies]
smart-bench-macro = { version = "0.1.0", path = "./macro" }
tokio = { version = "1.18.2", features = ["rt-multi-thread"] }
color-eyre = "0.6.1"
codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false }
contract-metadata = "1"
impl-serde = { version = "0.3.1", default-features = false }
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
serde_json = "1.0.81"
clap = { version = "3.1.17", features = ["derive"] }
subxt = "0.22"
futures = "0.3.21"
parity-wasm = "0.45"
blockstats = "0.1"
jsonrpsee = { version = "0.14.0", features = ["ws-client"] }
pallet-contracts-primitives = "6.0.0"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
# ethereum
sha3 = "0.10.1"
libsecp256k1 = { version = "0.7", default-features = false, features = [ "hmac" ] }
web3 = { version = "0.18.0", features = ["signing"] }
rlp = "0.5.1"
secp256k1 = { version = "0.21", features = ["recovery"] }
# substrate
sp-core = "6.0.0"
sp-keyring = "6.0.0"
sp-runtime = "6.0.0"
sp-io = "6.0.0"