-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
73 lines (60 loc) · 1.89 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
[package]
version = "0.2.1"
name = "validator"
authors = ["Akropolis Decentralised Ltd., <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
web3 = "0.8.0"
tokio = "0.1.22"
tokio-threadpool = "0.1.15"
futures = "0.1.29"
rustc-hex = "2.0.1"
ethabi = "8.0.1"
log = "0.4.0"
env_logger = "0.6.2"
dotenv = "0.14.1"
graphql_client = "0.8.0"
reqwest = "0.9.22"
serde = "1.0.101"
time = "0.1.42"
failure_derive = "0.1.7"
raw-transaction-builder = { path = 'raw-transaction-builder' }
substrate-bip39 = "0.3.1"
node-runtime = { git = 'https://github.com/akropolisio/akropolisos-chain-node', version = '0.5.4', package = 'akropolisos-runtime', branch = 'v2.0.0-alpha.6' }
substrate-api-client = { git = 'https://github.com/akropolisio/substrate-api-client', version = '2.0.2', branch = 'v2.0.0-alpha.6' }
[dependencies.consensus]
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-babe'
version = '2.0.0-alpha.6'
[dependencies.system]
git = 'https://github.com/paritytech/substrate.git'
package = 'frame-system'
version = '2.0.0-alpha.6'
[dependencies.balances]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-balances'
version = '2.0.0-alpha.6'
[dependencies.primitives]
features = ["full_crypto"]
git = 'https://github.com/paritytech/substrate.git'
package = 'sp-core'
version = '2.0.0-alpha.6'
[dependencies.keyring]
git = 'https://github.com/paritytech/substrate.git'
version = '2.0.0-alpha.6'
package = "sp-keyring"
[dependencies.runtime-primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'sp-runtime'
version = '2.0.0-alpha.6'
[dependencies.parity-codec]
default-features = false
features = ['derive']
version = '3.5'
[dependencies.codec]
package = "parity-scale-codec"
features = ["derive"]
version = "1.3.0"
default-features = false