This repository has been archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
103 lines (82 loc) · 2.72 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
94
95
96
97
98
99
100
101
102
103
[package]
authors = ['Anonymous']
build = 'build.rs'
edition = '2018'
name = 'substrate-tcr'
version = '2.0.0'
[dependencies]
derive_more = '0.15.0'
exit-future = '0.1.4'
futures = '0.1.29'
log = '0.4.8'
parking_lot = '0.9.0'
tokio = '0.1.22'
trie-root = '0.15.2'
[dependencies.aura]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-consensus-aura'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.aura-primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-consensus-aura-primitives'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-basic-authorship'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.codec]
package = 'parity-scale-codec'
version = '1.0.0'
[dependencies.ctrlc]
features = ['termination']
version = '3.1.3'
[dependencies.grandpa]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-finality-grandpa'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.grandpa-primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-finality-grandpa-primitives'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.inherents]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-inherents'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.network]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-network'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.substrate-tcr-runtime]
path = 'runtime'
[dependencies.primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-primitives'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.sr-io]
git = 'https://github.com/paritytech/substrate.git'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.substrate-cli]
git = 'https://github.com/paritytech/substrate.git'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.substrate-client]
git = 'https://github.com/paritytech/substrate.git'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.substrate-executor]
git = 'https://github.com/paritytech/substrate.git'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.substrate-service]
git = 'https://github.com/paritytech/substrate.git'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[dependencies.transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-transaction-pool'
rev = 'acf86cd4b0ad4c45dbba57c2ae323531d5b71264'
[[bin]]
name = 'substrate-tcr'
path = 'src/main.rs'
[build-dependencies]
vergen = '3.0.4'
[workspace]
members = ['runtime']
[profile.release]
panic = 'unwind'