-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
158 lines (152 loc) · 12.2 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[workspace]
resolver = "2"
members = [
"clients/runner",
"clients/runtime",
"clients/runtime/client",
"clients/vault",
"clients/wallet",
"clients/service",
"clients/stellar-relay-lib",
"pallets/clients-info",
"pallets/currency",
"pallets/fee",
"pallets/nomination",
"pallets/oracle",
"pallets/pooled-rewards",
"pallets/reward-distribution",
"pallets/staking",
"pallets/stellar-relay",
"pallets/vault-registry",
"primitives",
"rpc",
"pallets/*/rpc",
"testchain/node",
"testchain/runtime",
]
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
# Sacrifice compile speed for execution speed by using optimization flags:
# https://doc.rust-lang.org/rustc/linker-plugin-lto.html
lto = "fat"
# https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
codegen-units = 1
[patch."https://github.com/paritytech/substrate"]
frame-support = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-support-procedural = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-support-procedural-tools = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-support-procedural-tools-derive = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-system = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-core = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-externalities = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-io = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-std = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-storage = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-wasm-interface = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-benchmarking = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-benchmarking-cli = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-executive = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-system-benchmarking = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-aura = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-authorship = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-balances = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-grandpa = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-session = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-sudo = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-timestamp = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-transaction-payment = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-allocator = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-basic-authorship = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-block-builder = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-chain-spec = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-chain-spec-derive = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-cli = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-client-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-client-db = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-aura = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-babe = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-epochs = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-manual-seal = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-slots = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-executor = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-executor-common = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-executor-wasmi = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-executor-wasmtime = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-consensus-grandpa = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-informant = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-keystore = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-bitswap = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-common = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-gossip = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-light = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-sync = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-network-transactions = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-offchain = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-peerset = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-proposer-metrics = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-rpc = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-rpc-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-rpc-server = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-rpc-spec-v2 = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-service = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-state-db = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-sysinfo = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-telemetry = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-tracing = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-tracing-proc-macro = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-transaction-pool = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-transaction-pool-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sc-utils = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-api = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-api-proc-macro = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-application-crypto = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-arithmetic = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-block-builder = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-blockchain = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus-aura = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus-babe = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus-slots = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus-vrf = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-core-hashing = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-core-hashing-proc-macro = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-database = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-debug-derive = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-consensus-grandpa = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-inherents = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-keyring = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-keystore = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-maybe-compressed-blob = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-offchain = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-panic-handler = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-rpc = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime-interface = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-session = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-staking = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-state-machine = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-tracing = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-transaction-pool = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-transaction-storage-proof = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-trie = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-timestamp = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-version = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-version-proc-macro = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-weights = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
substrate-build-script-utils = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
substrate-wasm-builder = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
[patch."https://github.com/paritytech/polkadot"]
xcm = { git = "https://github.com/paritytech//polkadot", branch = "release-v0.9.40" }
[patch.crates-io]
sp-core = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }