-
Notifications
You must be signed in to change notification settings - Fork 10
feat(messaging): v1 #528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(messaging): v1 #528
Changes from all commits
b7cd6f5
e7b234b
5d169c3
37a89c2
e82bc6d
59189a1
d397550
12b745a
16be260
e0b2e21
3e916f8
1282743
789096f
e0e6860
b4c67d9
a7e3558
e193b0c
855ab4f
eb6ad29
ceaeab4
3f04120
22776ca
3f07f3c
26b8e4b
1f01c3a
2fea60e
8ceb523
83bd4cb
8975a8f
45082d8
e93a870
b6788ec
5f3a749
5887d71
e0f3981
ff93137
c2fb2bf
e10c561
cb9c0ca
7fc6ddf
4735b2a
569d6b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,12 +19,12 @@ exclude = [ | |
| "extension/contract", | ||
| "pop-api", | ||
| "tests/contracts", | ||
| "integration-tests", | ||
| ] | ||
| members = [ | ||
| "integration-tests", | ||
| "node", | ||
| "pallets/*", | ||
| "pop-api/integration-tests", | ||
| #"pop-api/integration-tests", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Obviously cant merge into main until this is resolved. There is no corresponding todo in the PR description. |
||
| "primitives", | ||
| "runtime/devnet", | ||
| "runtime/mainnet", | ||
|
|
@@ -148,6 +148,7 @@ sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sta | |
| sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } | ||
| sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } | ||
| sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } | ||
| sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } | ||
| sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } | ||
| substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } | ||
|
|
||
|
|
@@ -205,3 +206,24 @@ ismp-parachain-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch | |
| pallet-ismp = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } | ||
| pallet-ismp-rpc = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } | ||
| pallet-ismp-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } | ||
|
|
||
| # Revive | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be removed after a rebase please? |
||
| # array-bytes = { version = "6.2.2", default-features = false } | ||
| # assert_matches = { version = "1.5.0" } | ||
| # bitflags = { version = "1.3.2" } | ||
| # environmental = { version = "1.1.4", default-features = false } | ||
| # pallet-revive-fixtures = { path = "pallets/revive/fixtures", default-features = false } | ||
| # pallet-revive-mock-network = { default-features = false, path = "pallets/revive/mock-network" } | ||
| # pallet-revive-proc-macro = { path = "pallets/revive/proc-macro", default-features = false } | ||
| # pallet-revive-uapi = { path = "pallets/revive/uapi", default-features = false } | ||
| # parity-wasm = { version = "0.45.0" } | ||
| # paste = { version = "1.0.14", default-features = false } | ||
| # pretty_assertions = { version = "1.3.0" } | ||
| # proc-macro2 = { version = "1.0.64" } | ||
| # quote = { version = "1.0.33" } | ||
| # rlp = { version = "0.5.2", default-features = false } | ||
| # sp-tracing = { version = "16.0.0", default-features = false } | ||
| # syn = { version = "2.0.53" } | ||
| # tempfile = { version = "3.8.1" } | ||
| # toml = { version = "0.8.8" } | ||
| # wat = { version = "1.0.0" } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,19 +23,26 @@ frame-benchmarking.workspace = true | |
| frame-support.workspace = true | ||
| frame-system.workspace = true | ||
| pallet-assets.workspace = true | ||
| pallet-balances.workspace = true | ||
f-gate marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| pallet-timestamp.workspace = true | ||
| pallet-nfts.workspace = true | ||
| sp-core.workspace = true | ||
| sp-io.workspace = true | ||
| sp-runtime.workspace = true | ||
| sp-std.workspace = true | ||
| sp-weights.workspace = true | ||
|
|
||
| # Cross chain | ||
| ismp.workspace = true | ||
| pallet-ismp.workspace = true | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only usage seems to be an implementation of |
||
| pallet-xcm.workspace = true | ||
f-gate marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| xcm.workspace = true | ||
| xcm-builder.workspace = true | ||
|
|
||
| [dev-dependencies] | ||
| pallet-balances.workspace = true | ||
| sp-io.workspace = true | ||
| pallet-ismp = { workspace = true, features = [ "unsigned" ] } | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought we werent using unsigned anymore? |
||
| xcm-builder.workspace = true | ||
|
|
||
| [features] | ||
| default = [ "std" ] | ||
|
|
@@ -44,7 +51,10 @@ runtime-benchmarks = [ | |
| "frame-support/runtime-benchmarks", | ||
| "frame-system/runtime-benchmarks", | ||
| "pallet-assets/runtime-benchmarks", | ||
| "pallet-balances/runtime-benchmarks", | ||
| "pallet-nfts/runtime-benchmarks", | ||
| "pallet-timestamp/runtime-benchmarks", | ||
| "pallet-xcm/runtime-benchmarks", | ||
| "pop-chain-extension/runtime-benchmarks", | ||
| "sp-runtime/runtime-benchmarks", | ||
| ] | ||
|
|
@@ -58,12 +68,14 @@ std = [ | |
| "pallet-balances/std", | ||
| "pallet-ismp/std", | ||
| "pallet-nfts/std", | ||
| "pallet-xcm/std", | ||
| "pop-chain-extension/std", | ||
| "scale-info/std", | ||
| "sp-core/std", | ||
| "sp-io/std", | ||
| "sp-runtime/std", | ||
| "sp-std/std", | ||
| "xcm-builder/std" | ||
| ] | ||
| try-runtime = [ | ||
| "frame-support/try-runtime", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description shows integration tests as a 'completed' todo, yet they are excluded?