@@ -9,6 +9,144 @@ members = [
9
9
]
10
10
resolver = " 2"
11
11
12
+ [workspace .dependencies ]
13
+ log = { version = " 0.4.17" , default-features = false }
14
+ env_logger = " 0.10.0"
15
+ twox-hash = { version = " 1.6.3" , default-features = false , features = [" digest_0_10" ]}
16
+ thiserror = " 1.0.40"
17
+ apache-avro = { version = " 0.14.0" , default-features = false }
18
+ rand = " 0.8.5"
19
+
20
+ # substrate wasm
21
+ parity-scale-codec = { version = " 3.6.1" , default-features = false }
22
+ frame-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
23
+ frame-executive = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
24
+ frame-support = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
25
+ frame-system = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
26
+ frame-system-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
27
+ frame-system-rpc-runtime-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
28
+ frame-try-runtime = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
29
+ sp-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
30
+ sp-core = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
31
+ sp-io = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
32
+ sp-runtime = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
33
+ sp-std = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
34
+ sp-session = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
35
+ sp-weights = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
36
+ sp-offchain = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
37
+ scale-info = { version = " 2.10.0" , default-features = false , features = [
38
+ " derive" ,
39
+ ] }
40
+ sp-keystore = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
41
+ sp-keyring = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
42
+ sp-version = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
43
+ chrono = { version = " 0.4.24" }
44
+ pretty_assertions = { version = " 1.3.0" }
45
+ smallvec = " 1.11.0"
46
+ numtoa = " 0.2.4"
47
+ enumflags2 = " 0.7.7"
48
+ serde = { version = " 1.0" , default-features = false }
49
+ serial_test = { version = " 0.9.0" , default-features = false }
50
+
51
+ # substrate pallets
52
+ pallet-aura = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
53
+ pallet-authorship = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
54
+ pallet-balances = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
55
+ pallet-collective = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
56
+ pallet-democracy = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
57
+ pallet-multisig = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
58
+ pallet-preimage = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
59
+ pallet-scheduler = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
60
+ pallet-session = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
61
+ pallet-sudo = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
62
+ pallet-timestamp = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
63
+ pallet-transaction-payment = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
64
+ pallet-transaction-payment-rpc-runtime-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
65
+ pallet-treasury = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
66
+ pallet-utility = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
67
+
68
+ # polkadot
69
+ polkadot-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
70
+ polkadot-parachain-primitives = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
71
+ polkadot-runtime-common = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
72
+ polkadot-primitives = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
73
+ polkadot-service = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
74
+
75
+ # cumulus
76
+ cumulus-client-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
77
+ cumulus-client-collator = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
78
+ cumulus-client-consensus-aura = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
79
+ cumulus-client-consensus-common = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
80
+ cumulus-client-consensus-proposer = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
81
+ cumulus-client-network = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
82
+ cumulus-client-service = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
83
+ cumulus-relay-chain-inprocess-interface = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
84
+ cumulus-relay-chain-interface = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
85
+ cumulus-relay-chain-minimal-node = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
86
+ cumulus-relay-chain-rpc-interface = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
87
+
88
+ cumulus-pallet-aura-ext = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
89
+ cumulus-pallet-parachain-system = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
90
+ cumulus-pallet-session-benchmarking = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
91
+ cumulus-primitives-aura = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
92
+ cumulus-primitives-core = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
93
+ cumulus-primitives-parachain-inherent = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
94
+ cumulus-primitives-timestamp = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
95
+ pallet-collator-selection = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
96
+ parachain-info = {git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
97
+
98
+ # client
99
+ derive_more = " 0.99.17"
100
+ futures = " 0.3.25"
101
+ hex = " 0.4.3"
102
+ hex-literal = " 0.4.1"
103
+ impl-serde = { version = " 0.4.0" , default-features = false }
104
+ jsonrpsee = { version = " 0.16.2" , default-features = false }
105
+ oorandom = " 11.1.3"
106
+ phf = { version = " 0.11" , default-features = false , features = [" macros" ] }
107
+ rayon = " 1.5.3"
108
+ serde_json = { version = " 1.0.86" , default-features = false }
109
+ tokio = { version = " 1.25.0" , default-features = false }
110
+ unicode-normalization = { version = " 0.1.22" , default-features = false }
111
+ clap = { version = " 4.2.5" , features = [" derive" ] }
112
+
113
+ frame-benchmarking-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
114
+ pallet-transaction-payment-rpc = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
115
+ sc-basic-authorship = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
116
+ sc-chain-spec = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
117
+ sc-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
118
+ sc-client-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
119
+ sc-client-db = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
120
+ sc-consensus = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
121
+ sc-consensus-manual-seal = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
122
+ sc-executor = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
123
+ sc-keystore = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
124
+ sc-network = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
125
+ sc-network-common = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
126
+ sc-network-sync = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
127
+ sc-offchain = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
128
+ sc-rpc = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
129
+ sc-service = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
130
+ sc-sysinfo = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
131
+ sc-telemetry = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
132
+ sc-tracing = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
133
+ sc-transaction-pool = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
134
+ sc-transaction-pool-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
135
+ sp-block-builder = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
136
+ sp-blockchain = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
137
+ sp-consensus = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
138
+ sp-consensus-aura = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
139
+ sp-inherents = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
140
+ sp-rpc = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
141
+ sp-timestamp = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
142
+ sp-transaction-pool = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
143
+ sp-wasm-interface = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
144
+ substrate-build-script-utils = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
145
+ substrate-frame-rpc-system = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
146
+ substrate-prometheus-endpoint = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
147
+ substrate-test-runtime-client = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" , default-features = false }
148
+ try-runtime-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.1.0" }
149
+
12
150
[profile .release ]
13
151
panic = " unwind"
14
152
lto = true
0 commit comments