mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 16:37:57 +00:00
f92e41925f
This is mostly a copy of the predating version with exception of some renaming and alterations (e.g. the message handler takes an inbound downward message by value, not by reference).
29 lines
996 B
TOML
29 lines
996 B
TOML
[package]
|
|
name = "cumulus-message-broker"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
# Other dependencies
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ], default-features = false }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-primitives = { path = "../primitives", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-inherents/std",
|
|
"cumulus-primitives/std",
|
|
"sp-std/std"
|
|
]
|