mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
c9aaddf667
* Start by replacing branch names and set `DownwardMessage` * Add the upward-message crate * Add Kusama & Polkadot * More work on getting the upward messages working * Fix build * Begin to integrate it into the test Parachain * Update * Make everything compile again * Switch to westend and print parachain account on startup * Use MultiSignature etc * Fix validate block * Some downward messages work * Update git reference * More downward messages integration * Update test runtime for downward messages * Enable downward message handler and withdraw send tokens * Add some docs * Begin to implement simple XCMP * More work * Fixes and make parachain id configurable * Make parachain ID be part of the genesis * Finishing the XCMP message demo * Update and fixes tests * Update branch
40 lines
1.5 KiB
TOML
40 lines
1.5 KiB
TOML
[package]
|
|
name = "cumulus-upward-message"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
|
|
# Polkadot deps
|
|
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
|
|
# All these should be optional dependenices, but given the perfect Cargo, it is not possible.
|
|
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
westend-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-std/std",
|
|
"polkadot-runtime/std",
|
|
"kusama-runtime/std",
|
|
"westend-runtime/std",
|
|
"polkadot-core-primitives/std",
|
|
"polkadot-parachain/std",
|
|
]
|
|
# Should be enabled by when compiling the runtime for WASM.
|
|
#
|
|
# This disables the runtime api of the Polkadot/Kusama/Westend
|
|
# runtimes to not clash with the runtime api of the Parachain when building
|
|
# for WASM.
|
|
runtime-wasm = [
|
|
"polkadot-runtime/disable-runtime-api",
|
|
"westend-runtime/disable-runtime-api",
|
|
"kusama-runtime/disable-runtime-api",
|
|
]
|