Skip to content

Commit 55d47bf

Browse files
committed
fix crates
1 parent 886ae22 commit 55d47bf

File tree

8 files changed

+4
-14
lines changed

8 files changed

+4
-14
lines changed

Cargo.lock

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

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,17 @@ sp-genesis-builder = { version = "0.15.0", default-features = false }
156156
pallet-xcm = { version = "16.0.0", default-features = false }
157157
polkadot-parachain-primitives = { version = "14.0.0", default-features = false }
158158
polkadot-runtime-common = { version = "16.0.0", default-features = false }
159-
staging-xcm = { version = "14.1.0", default-features = false }
159+
staging-xcm = { version = "=14.1.0", default-features = false }
160160
staging-xcm-builder = { version = "16.0.0", default-features = false }
161161
staging-xcm-executor = { version = "16.0.0", default-features = false }
162162
cumulus-primitives-aura = { version = "0.15.0", default-features = false }
163163
cumulus-pallet-session-benchmarking = { version = "18.0.0", default-features = false }
164164
cumulus-pallet-aura-ext = { version = "0.16.0", default-features = false }
165165
cumulus-pallet-dmp-queue = { version = "0.16.0", default-features = false }
166+
cumulus-pallet-parachain-system = { version = "=0.16.0", default-features = false }
166167
cumulus-pallet-xcm = { version = "0.16.0", default-features = false }
167168
cumulus-pallet-xcmp-queue = { version = "0.16.0", default-features = false }
168-
cumulus-primitives-core = { version = "0.15.0", default-features = false }
169+
cumulus-primitives-core = { version = "=0.15.0", default-features = false }
169170
cumulus-primitives-timestamp = { version = "0.15.0", default-features = false }
170171
cumulus-primitives-utility = { version = "0.16.0", default-features = false }
171172
pallet-collator-selection = { version = "18.0.0", default-features = false }
@@ -343,7 +344,6 @@ tesseract = { path = "tesseract/relayer" }
343344
transaction-fees = { path = "tesseract/fees" }
344345
telemetry-server = { path = "tesseract/telemetry" }
345346
tesseract-config = { path = "tesseract/config" }
346-
cumulus-pallet-parachain-system = { version = "0.16.0", default-features = false }
347347

348348
[workspace.dependencies.ethabi]
349349
version = "18.0.0"

modules/ismp/clients/grandpa/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ sp-consensus-aura = { workspace = true }
3737
sp-core = { workspace = true }
3838

3939
# cumulus
40-
cumulus-primitives-core = { workspace = true }
4140
substrate-state-machine = { workspace = true }
4241

4342
[features]
@@ -48,7 +47,6 @@ std = [
4847
"frame-support/std",
4948
"frame-system/std",
5049
"scale-info/std",
51-
"cumulus-primitives-core/std",
5250
"ismp/std",
5351
"sp-trie/std",
5452
"sp-consensus-aura/std",

modules/pallets/mmr/gadget/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ homepage = "https://substrate.io"
77
edition = "2021"
88
publish = false
99

10-
11-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12-
1310
[dependencies]
1411
codec = { workspace = true, default-features = true }
1512
futures = "0.3.30"
@@ -25,4 +22,3 @@ pallet-mmr-runtime-api = { workspace = true, default-features = true }
2522
pallet-ismp = { workspace = true, default-features = true }
2623
pallet-mmr = { workspace = true, default-features = true }
2724
mmr-primitives = { workspace = true, default-features = true }
28-

modules/pallets/mmr/primitives/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ homepage = "https://docs.hyperbridge.network/developers/polkadot/getting-started
99
documentation = "https://docs.rs/ismp-parachain"
1010
description = "Merkle mountain range primitives for pallet-ismp"
1111
keywords = ["substrate", "polkadot-sdk", "ISMP", "interoperability"]
12-
readme = "README.md"
1312
publish = false
1413

1514
[dependencies]

modules/pallets/mmr/rpc/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ homepage = "https://docs.hyperbridge.network/developers/polkadot/getting-started
99
documentation = "https://docs.rs/pallet-ismp-rpc"
1010
description = "RPC apis for pallet-ismp"
1111
keywords = ["substrate", "polkadot-sdk", "ISMP", "interoperability"]
12-
readme = "README.md"
1312
publish = false
1413

1514
[package.metadata.docs.rs]

modules/pallets/token-gateway/src/benchmarking.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![cfg(feature = "runtime-benchmarks")]
22

3-
use crate::*;
3+
use crate::{types::*, *};
44
use frame_benchmarking::v2::*;
55
use frame_support::{
66
traits::{fungible, fungibles},

scripts/release-crates.sh

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
cargo release \
44
-p serde-hex-utils \
55
-p ismp \
6-
-p mmr-primitives \
76
-p pallet-hyperbridge \
87
-p pallet-ismp \
98
-p pallet-ismp-runtime-api \

0 commit comments

Comments
 (0)