[package] name = "cumulus-message-broker" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] # substrate deps frame-support = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", default-features = false } sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", default-features = false } sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-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 } cumulus-upward-message = { path = "../upward-message", default-features = false } [features] default = [ "std" ] std = [ "frame-support/std", "frame-system/std", "sp-inherents/std", "sp-io/std", "sp-std/std", "sp-runtime/std", "codec/std", "cumulus-primitives/std", "cumulus-upward-message/std", ]