mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
Resurrect (a minimal version of) message-broker (#234)
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).
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
[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"
|
||||
]
|
||||
Reference in New Issue
Block a user