forked from automata-network/automata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
138 lines (137 loc) · 13.3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[workspace]
members = [
'node',
'runtime/automata',
'runtime/contextfree',
'runtime/finitestate',
'primitives'
]
[profile.release]
panic = 'unwind'
[patch."https://github.com/paritytech/substrate.git"]
frame-benchmarking = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-benchmarking-cli = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-election-provider-support = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-executive = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-metadata = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-support = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-support-procedural = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-support-procedural-tools = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-support-procedural-tools-derive = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-system = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-system-benchmarking = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
frame-system-rpc-runtime-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-api-proc-macro = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-application-crypto = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-arithmetic = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-authority-discovery = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-authorship = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-block-builder = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-blockchain = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-consensus = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-consensus-aura = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-consensus-babe = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-consensus-slots = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-consensus-vrf = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-core = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-database = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-debug-derive = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-externalities = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-finality-grandpa = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-inherents = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-io = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-keyring = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-keystore = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-maybe-compressed-blob = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-npos-elections = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-npos-elections-solution-type = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-offchain = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-panic-handler = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-rpc = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-runtime = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-runtime-interface = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-runtime-interface-proc-macro = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-serializer = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-session = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-staking = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-state-machine = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-std = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-storage = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-tasks = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-timestamp = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-tracing = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-transaction-pool = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-transaction-storage-proof = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-trie = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-version = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-version-proc-macro = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sp-wasm-interface = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-allocator = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-authority-discovery = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-basic-authorship = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-block-builder = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-chain-spec = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-chain-spec-derive = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-cli = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-client-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-client-db = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus-babe = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus-babe-rpc = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus-epochs = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus-slots = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-consensus-uncles = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-executor = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-executor-common = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-executor-wasmi = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-executor-wasmtime = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-finality-grandpa = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-finality-grandpa-rpc = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-informant = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-keystore = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-light = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-network = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-network-gossip = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-offchain = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-peerset = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-proposer-metrics = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-rpc = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-rpc-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-rpc-server = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-service = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-state-db = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-telemetry = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-tracing = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-tracing-proc-macro = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-transaction-pool = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
sc-transaction-pool-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-authority-discovery = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-authorship = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-babe = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-balances = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-collective = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-democracy = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-election-provider-multi-phase = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-elections-phragmen = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-grandpa = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-im-online = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-indices = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-membership = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-offences = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-randomness-collective-flip = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-scheduler = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-session = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-staking = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-staking-reward-curve = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-sudo = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-timestamp = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-transaction-payment = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-transaction-payment-rpc = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-transaction-payment-rpc-runtime-api = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-treasury = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-utility = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
pallet-vesting = {git = "https://github.com/automata-network/substrate.git", branch = "polkadot-v0.9.10"}
[patch.crates-io.ed25519]
git = "https://github.com/RustCrypto/signatures.git"
tag = "ed25519/v1.3.0"