Skip to content

Commit 292f0fc

Browse files
committed
Merge branch 'master' into publish
2 parents 1bdd412 + 8f59b50 commit 292f0fc

File tree

18 files changed

+13
-123
lines changed

18 files changed

+13
-123
lines changed

.config/zepter.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version:
66
format: 1
77
# Minimum version of the binary that is expected to work. This is just for printing a nice error
88
# message when someone tries to use an older version.
9-
binary: 0.13.2
9+
binary: 0.15.0
1010

1111
# The examples in this file assume crate `A` to have a dependency on crate `B`.
1212
workflows:
@@ -18,6 +18,8 @@ workflows:
1818
'propagate-feature',
1919
# These are the features to check:
2020
'--features=try-runtime,runtime-benchmarks,std',
21+
# Ignore the features of dependencies that are exclusively used as dev or build.
22+
'--dep-kinds=normal:check,dev:ignore,build:ignore',
2123
# Do not try to add a new section into `[features]` of `A` only because `B` expose that feature. There are edge-cases where this is still needed, but we can add them manually.
2224
'--left-side-feature-missing=ignore',
2325
# Ignore the case that `A` it outside of the workspace. Otherwise it will report errors in external dependencies that we have no influence on.

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check for Wasm
4141
run: make dev-check
4242
- name: Install Zepter
43-
run: cargo install zepter --version 0.14.0 --locked -q -f --no-default-features && zepter --version
43+
run: cargo install zepter --version 0.15.0 --locked -q -f --no-default-features && zepter --version
4444
- name: Check Rust features
4545
run: make dev-features-check
4646
- name: Run tests

asset-registry/Cargo.toml

Lines changed: 6 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ xcm-executor = { workspace = true }
2929
# orml
3030
orml-traits = { path = "../traits", version = "0.6.1", default-features = false }
3131

32+
# for runtime-benchmarks
33+
polkadot-runtime-common = { workspace = true, optional = true }
34+
3235
[dev-dependencies]
3336
# substrate
3437
pallet-balances = { workspace = true, features = ["std"] }
@@ -53,33 +56,21 @@ xcm-simulator = { workspace = true }
5356
# orml
5457
orml-tokens = { path = "../tokens" }
5558
orml-xcm = { path = "../xcm" }
56-
orml-xcm-support = { path = "../xcm-support", default-features = false }
59+
orml-xcm-support = { path = "../xcm-support" }
5760
orml-xtokens = { path = "../xtokens" }
5861

5962
[features]
6063
default = [ "std" ]
6164
std = [
62-
"cumulus-pallet-dmp-queue/std",
63-
"cumulus-pallet-parachain-system/std",
64-
"cumulus-pallet-xcm/std",
65-
"cumulus-pallet-xcmp-queue/std",
66-
"cumulus-primitives-core/std",
6765
"frame-support/std",
6866
"frame-system/std",
6967
"log/std",
7068
"orml-traits/std",
71-
"orml-xcm-support/std",
72-
"pallet-balances/std",
73-
"pallet-message-queue/std",
7469
"pallet-xcm/std",
75-
"parachain-info/std",
7670
"parity-scale-codec/std",
77-
"polkadot-parachain-primitives/std",
78-
"polkadot-runtime-common/std",
79-
"polkadot-runtime-parachains/std",
71+
"polkadot-runtime-common?/std",
8072
"scale-info/std",
8173
"serde",
82-
"sp-core/std",
8374
"sp-io/std",
8475
"sp-runtime/std",
8576
"sp-std/std",
@@ -88,37 +79,18 @@ std = [
8879
"xcm/std",
8980
]
9081
runtime-benchmarks = [
91-
"cumulus-pallet-parachain-system/runtime-benchmarks",
92-
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
9382
"frame-support/runtime-benchmarks",
9483
"frame-system/runtime-benchmarks",
95-
"orml-tokens/runtime-benchmarks",
96-
"orml-xtokens/runtime-benchmarks",
97-
"pallet-balances/runtime-benchmarks",
98-
"pallet-message-queue/runtime-benchmarks",
9984
"pallet-xcm/runtime-benchmarks",
100-
"polkadot-parachain-primitives/runtime-benchmarks",
10185
"polkadot-runtime-common/runtime-benchmarks",
102-
"polkadot-runtime-parachains/runtime-benchmarks",
10386
"sp-runtime/runtime-benchmarks",
10487
"xcm-builder/runtime-benchmarks",
10588
"xcm-executor/runtime-benchmarks",
10689
]
10790
try-runtime = [
108-
"cumulus-pallet-dmp-queue/try-runtime",
109-
"cumulus-pallet-parachain-system/try-runtime",
110-
"cumulus-pallet-xcm/try-runtime",
111-
"cumulus-pallet-xcmp-queue/try-runtime",
11291
"frame-support/try-runtime",
11392
"frame-system/try-runtime",
114-
"orml-tokens/try-runtime",
115-
"orml-xcm/try-runtime",
116-
"orml-xtokens/try-runtime",
117-
"pallet-balances/try-runtime",
118-
"pallet-message-queue/try-runtime",
11993
"pallet-xcm/try-runtime",
120-
"parachain-info/try-runtime",
121-
"polkadot-runtime-common/try-runtime",
122-
"polkadot-runtime-parachains/try-runtime",
94+
"polkadot-runtime-common?/try-runtime",
12395
"sp-runtime/try-runtime",
12496
]

auction/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ std = [
3232
"parity-scale-codec/std",
3333
"scale-info/std",
3434
"serde",
35-
"sp-core/std",
36-
"sp-io/std",
3735
"sp-runtime/std",
3836
"sp-std/std",
3937
]

authority/Cargo.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ default = [ "std" ]
3030
std = [
3131
"frame-support/std",
3232
"frame-system/std",
33-
"pallet-preimage/std",
34-
"pallet-root-testing/std",
35-
"pallet-scheduler/std",
3633
"parity-scale-codec/std",
3734
"scale-info/std",
3835
"serde",
@@ -44,15 +41,10 @@ std = [
4441
runtime-benchmarks = [
4542
"frame-support/runtime-benchmarks",
4643
"frame-system/runtime-benchmarks",
47-
"pallet-preimage/runtime-benchmarks",
48-
"pallet-scheduler/runtime-benchmarks",
4944
"sp-runtime/runtime-benchmarks",
5045
]
5146
try-runtime = [
5247
"frame-support/try-runtime",
5348
"frame-system/try-runtime",
54-
"pallet-preimage/try-runtime",
55-
"pallet-root-testing/try-runtime",
56-
"pallet-scheduler/try-runtime",
5749
"sp-runtime/try-runtime",
5850
]

benchmarking/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ default = [ "std" ]
3333
std = [
3434
"frame-benchmarking/std",
3535
"frame-support/std",
36-
"frame-system/std",
3736
"log/std",
3837
"parity-scale-codec/std",
3938
"scale-info/std",

currencies/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,15 @@ std = [
3434
"frame-system/std",
3535
"orml-traits/std",
3636
"orml-utilities/std",
37-
"pallet-balances/std",
3837
"parity-scale-codec/std",
3938
"scale-info/std",
4039
"serde",
41-
"sp-core/std",
4240
"sp-io/std",
4341
"sp-runtime/std",
4442
"sp-std/std",
4543
]
4644
try-runtime = [
4745
"frame-support/try-runtime",
4846
"frame-system/try-runtime",
49-
"orml_tokens/try-runtime",
50-
"pallet-balances/try-runtime",
5147
"sp-runtime/try-runtime",
5248
]

nft/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ std = [
2929
"parity-scale-codec/std",
3030
"scale-info/std",
3131
"serde",
32-
"sp-core/std",
33-
"sp-io/std",
3432
"sp-runtime/std",
3533
"sp-std/std",
3634
]

oracle/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ std = [
3636
"scale-info/std",
3737
"serde",
3838
"sp-application-crypto/std",
39-
"sp-core/std",
4039
"sp-io/std",
4140
"sp-runtime/std",
4241
"sp-std/std",

parameters/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ std = [
3434
"scale-info/std",
3535
"serde",
3636
"sp-core/std",
37-
"sp-io/std",
3837
"sp-runtime/std",
3938
"sp-std/std",
4039
]

0 commit comments

Comments
 (0)