mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
934f27d92b
* Downward messages, the front-end.
* Move types around to make them accessible from Parachains
* Fix compilation
* Fix branch
* Make it compile for Cumulus
* Update the branch names
* Add default generic parameter
* Implement `Partialeq`
* Move upward messages into the `ValidationResult`
* Support disabling of the runtime api
* Update branch
* Adds support for handling downward messages
* Implement sending XCMP messages as up/downward messages
* service: update to latest ServiceBuilder changes
* Make it compile
* Initial commit
Forked at: ef2aa428d7
Parent branch: origin/master
* Update substrate branch to cecton-update-polkadot-substrate
* Update substrate & polkadot to cumulus-branch
* Reset branch
* Update primitives/src/parachain.rs
Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
* Update runtime/common/src/parachains.rs
Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
* Update runtime/common/src/parachains.rs
Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
* Minor fixes
* Fix wasm build
Co-authored-by: Gav Wood <gavin@parity.io>
Co-authored-by: André Silva <andre.beat@gmail.com>
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
47 lines
1.9 KiB
TOML
47 lines
1.9 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.8.13"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
|
|
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
|
|
# various unnecessary Substrate-specific endpoints.
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
|
|
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
|
|
|
|
# all optional crates.
|
|
derive_more = { version = "0.99.2", optional = true }
|
|
serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true }
|
|
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
parking_lot = { version = "0.10.0", optional = true }
|
|
log = { version = "0.4.8", optional = true }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "unknown")))'.dependencies]
|
|
shared_memory = { version = "0.10.0", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [
|
|
"codec/std",
|
|
"derive_more",
|
|
"serde/std",
|
|
"sp-std/std",
|
|
"shared_memory",
|
|
"sp-core/std",
|
|
"parking_lot",
|
|
"log",
|
|
"sp-externalities",
|
|
"sc-executor",
|
|
"sp-io",
|
|
"polkadot-core-primitives/std",
|
|
]
|