@@ -10,10 +10,10 @@ edition = "2021"
10
10
build = " build.rs"
11
11
12
12
[dependencies ]
13
- clap = { version = " 4.3.12 " , features = [" derive" ] }
14
- log = " 0.4.19 "
13
+ clap = { version = " 4.4.6 " , features = [" derive" ] }
14
+ log = " 0.4.20 "
15
15
codec = { package = " parity-scale-codec" , version = " 3.0.0" }
16
- serde = { version = " 1.0.171 " , features = [" derive" ] }
16
+ serde = { version = " 1.0.188 " , features = [" derive" ] }
17
17
jsonrpsee = { version = " 0.16.2" , features = [" server" ] }
18
18
futures = " 0.3.28"
19
19
hex-literal = { version = " 0.4.1" }
@@ -24,63 +24,71 @@ smallvec = "1.11.0"
24
24
hashed-parachain-runtime = { path = " ../runtime" }
25
25
26
26
# Substrate
27
- frame-benchmarking = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
28
- frame-benchmarking-cli = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
29
- pallet-transaction-payment-rpc = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
30
- sc-basic-authorship = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
31
- sc-chain-spec = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
32
- sc-cli = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
33
- sc-client-api = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
34
- sc-offchain = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
35
- sc-consensus = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
36
- sc-executor = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
37
- sc-network = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
38
- sc-network-sync = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
39
- sc-rpc = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
40
- sc-service = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
41
- sc-sysinfo = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
42
- sc-telemetry = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
43
- sc-tracing = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
44
- sc-transaction-pool = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
45
- sc-transaction-pool-api = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
46
- sp-api = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
47
- sp-block-builder = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
48
- sp-blockchain = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
49
- sp-consensus-aura = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
50
- sp-core = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
51
- sp-keystore = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
52
- sp-io = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
53
- sp-runtime = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
54
- sp-timestamp = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
55
- substrate-frame-rpc-system = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
56
- substrate-prometheus-endpoint = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
57
- try-runtime-cli = { git = " https://github.com/paritytech/substrate " , optional = true , branch = " polkadot-v1.0 .0" }
27
+ frame-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
28
+ frame-benchmarking-cli = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
29
+ pallet-transaction-payment-rpc = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
30
+ sc-basic-authorship = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
31
+ sc-chain-spec = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
32
+ sc-cli = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
33
+ sc-client-api = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
34
+ sc-offchain = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
35
+ sc-consensus = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
36
+ sc-executor = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
37
+ sc-network = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
38
+ sc-network-sync = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
39
+ sc-rpc = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
40
+ sc-service = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
41
+ sc-sysinfo = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
42
+ sc-telemetry = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
43
+ sc-tracing = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
44
+ sc-transaction-pool = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
45
+ sc-transaction-pool-api = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
46
+ sp-api = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
47
+ sp-block-builder = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
48
+ sp-blockchain = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
49
+ sp-consensus-aura = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
50
+ sp-core = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
51
+ sp-keystore = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
52
+ sp-io = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
53
+ sp-runtime = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
54
+ sp-timestamp = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
55
+ substrate-frame-rpc-system = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
56
+ substrate-prometheus-endpoint = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
57
+ try-runtime-cli = { git = " https://github.com/paritytech/polkadot-sdk " , optional = true , branch = " release- polkadot-v1.3 .0" }
58
58
59
59
# Polkadot
60
- polkadot-cli = { git = " https://github.com/paritytech/polkadot" , features = [" rococo-native" ], branch = " release-v1.0 .0" }
61
- polkadot-primitives = { git = " https://github.com/paritytech/polkadot" , branch = " release-v1.0 .0" }
62
- xcm = { git = " https://github.com/paritytech/polkadot" , default-features = false , branch = " release-v1.0 .0" }
60
+ polkadot-cli = { git = " https://github.com/paritytech/polkadot-sdk " , features = [" rococo-native" ], branch = " release-polkadot- v1.3 .0" }
61
+ polkadot-primitives = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot- v1.3 .0" }
62
+ xcm = { package = " staging-xcm " , git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot- v1.3 .0" }
63
63
64
64
# Cumulus
65
- cumulus-client-cli = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
66
- cumulus-client-consensus-aura = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
67
- cumulus-client-consensus-common = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
68
- cumulus-client-service = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
69
- cumulus-primitives-core = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
70
- cumulus-primitives-parachain-inherent = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
71
- cumulus-relay-chain-interface = { git = " https://github.com/paritytech/cumulus.git" , branch = " polkadot-v1.0.0" }
65
+ cumulus-client-cli = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
66
+ cumulus-client-collator = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
67
+ cumulus-client-consensus-aura = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
68
+ cumulus-client-consensus-common = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
69
+ cumulus-client-consensus-proposer = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
70
+ cumulus-client-service = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
71
+ cumulus-primitives-core = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
72
+ cumulus-primitives-parachain-inherent = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
73
+ cumulus-relay-chain-interface = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " release-polkadot-v1.3.0" }
72
74
color-print = " 0.3.4"
73
75
74
76
[build-dependencies ]
75
- substrate-build-script-utils = { git = " https://github.com/paritytech/substrate " , branch = " polkadot-v1.0 .0" }
77
+ substrate-build-script-utils = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release- polkadot-v1.3 .0" }
76
78
77
79
[features ]
78
80
default = []
79
81
runtime-benchmarks = [
80
82
" hashed-parachain-runtime/runtime-benchmarks" ,
83
+ " frame-benchmarking-cli/runtime-benchmarks" ,
84
+ " frame-benchmarking/runtime-benchmarks" ,
81
85
" polkadot-cli/runtime-benchmarks" ,
86
+ " polkadot-primitives/runtime-benchmarks" ,
87
+ " sc-service/runtime-benchmarks" ,
88
+ " sp-runtime/runtime-benchmarks" ,
82
89
]
83
90
try-runtime = [
84
- " try-runtime-cli/try-runtime" ,
85
- " hashed-parachain-runtime/try-runtime"
91
+ " hashed-parachain-runtime/try-runtime" ,
92
+ " polkadot-cli/try-runtime" ,
93
+ " sp-runtime/try-runtime" ,
86
94
]
0 commit comments