-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
94 lines (74 loc) · 2.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = 'akropolis'
version = '0.8.2'
authors = ['Akropolis <admin@akropolis.io>']
build = 'build.rs'
edition = '2018'
[[bin]]
name = 'akropolis'
path = 'src/main.rs'
[profile.release]
panic = 'unwind'
[build-dependencies]
vergen = '3'
[dependencies]
# error-chain = '0.12'
hex-literal = '0.2'
serde_json = "1.0.39"
derive_more = "0.14.0"
futures = "0.1"
exit-future = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
log = "0.4"
tokio = "0.1"
parking_lot = "0.8.0"
parity-codec = "3.5" #3.3
trie-root = "0.12.2"
[workspace]
members = [ "runtime" ]
exclude = [ "runtime/wasm" ]
[dependencies.akropolis-runtime]
path = 'runtime'
[dependencies.basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-basic-authorship'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.consensus]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-consensus-aura'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.inherents]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-inherents'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.network]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-network'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.telemetry]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-telemetry'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-primitives'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.sr-io]
git = 'https://github.com/paritytech/substrate.git'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.substrate-cli]
git = 'https://github.com/paritytech/substrate.git'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.substrate-client]
git = 'https://github.com/paritytech/substrate.git'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.substrate-executor]
git = 'https://github.com/paritytech/substrate.git'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.substrate-service]
git = 'https://github.com/paritytech/substrate.git'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'
[dependencies.transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-transaction-pool'
rev = '2f1b89f4b2f969917117a6bcecb14f361bf1c776'