mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 11:18:01 +00:00
28 lines
903 B
TOML
28 lines
903 B
TOML
[package]
|
|
name = "cumulus-message-broker"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# substrate deps
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
|
|
|
|
# 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",
|
|
"codec/std",
|
|
"cumulus-primitives/std",
|
|
]
|