Skip to content

Commit 47d02cb

Browse files
authored
Merge pull request #178 from Polimec/fix/jwt-runtime-bench
Fix/jwt runtime bench
2 parents 3802591 + 07ba285 commit 47d02cb

File tree

7 files changed

+102
-158
lines changed

7 files changed

+102
-158
lines changed

Cargo.lock

+6-112
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pallets/funding/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ repository.workspace = true
1111
version.workspace = true
1212

1313
[dependencies]
14-
serde = { workspace = true }
14+
serde = { workspace = true }
1515
parity-scale-codec = { version = "3.6.5", features = [
16-
"derive",
16+
"derive",
1717
], default-features = false }
1818
scale-info = { version = "2.9.0", default-features = false, features = [
19-
"derive",
19+
"derive",
2020
] }
2121
tokio = { version = "1", features = ["full"], optional = true }
2222
futures = { version = "0.3.29", optional = true }
2323
log.workspace = true
2424
itertools.workspace = true
2525

2626
# Substrate dependencies
27-
frame-benchmarking = {workspace = true, optional = true}
27+
frame-benchmarking = { workspace = true, optional = true }
2828
frame-support.workspace = true
2929
frame-system.workspace = true
3030
sp-std.workspace = true
@@ -44,7 +44,7 @@ polkadot-runtime.workspace = true
4444
polkadot-runtime-parachains.workspace = true
4545
polkadot-parachain.workspace = true
4646
polimec-receiver.workspace = true
47-
assert_matches2 = { workspace = true, optional = true}
47+
assert_matches2 = { workspace = true, optional = true }
4848
polimec-common-test-utils = { workspace = true, optional = true }
4949

5050
[dev-dependencies]
@@ -60,6 +60,7 @@ xcm-executor.workspace = true
6060
[features]
6161
default = [ "std" ]
6262
std = [
63+
"assert_matches2",
6364
"frame-benchmarking?/std",
6465
"frame-support/std",
6566
"frame-system/std",
@@ -74,8 +75,8 @@ std = [
7475
"pallet-xcm/std",
7576
"parachains-common/std",
7677
"parity-scale-codec/std",
78+
"polimec-common-test-utils?/std",
7779
"polimec-common/std",
78-
"polimec-common-test-utils/std",
7980
"polimec-receiver/std",
8081
"polimec-xcm-executor/std",
8182
"polkadot-parachain/std",
@@ -92,7 +93,6 @@ std = [
9293
"xcm-builder/std",
9394
"xcm-executor/std",
9495
"xcm/std",
95-
"assert_matches2",
9696
]
9797
runtime-benchmarks = [
9898
"frame-benchmarking/runtime-benchmarks",
@@ -104,6 +104,7 @@ runtime-benchmarks = [
104104
"pallet-linear-release/runtime-benchmarks",
105105
"pallet-timestamp/runtime-benchmarks",
106106
"pallet-xcm/runtime-benchmarks",
107+
"polimec-common-test-utils",
107108
"polimec-common/runtime-benchmarks",
108109
"polimec-receiver/runtime-benchmarks",
109110
"polimec-xcm-executor/runtime-benchmarks",
@@ -130,4 +131,3 @@ try-runtime = [
130131
"polkadot-runtime/try-runtime",
131132
"sp-runtime/try-runtime",
132133
]
133-

0 commit comments

Comments
 (0)