[package] authors = [ "t3rn " ] description = "A receiver channel part of XBI" edition = "2021" license = "Apache-2.0" name = "xbi-receiver" repository = "https://github.com/t3rn/xbi" version = "0.3.2" # TODO: share the same crate for sender/receiver and enable via feature flags [dependencies] codec = { package = "parity-scale-codec", version = "3", default-features = false } log = { version = "0.4", default-features = false } scale-info = { version = "2.1.1", default-features = false, features = [ "derive" ] } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, version = "6.0.0" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, version = "6.0.0" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, version = "6.0.0" } sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, version = "4.0.0" } frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, optional = true, version = "4.0.0-dev" } frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false, optional = true, version = "4.0.0-dev" } xbi-channel-primitives = { path = "../../crates/channel-primitives", default-features = false, version = "0.3" } xbi-format = { path = "../../crates/xbi-format", default-features = false, version = "0.3" } xbi-sender = { path = "../../crates/sender", default-features = false, version = "0.3" } [features] default = [ "std", "frame-std" ] frame = [ "frame-support", "frame-system" ] frame-std = [ "frame-support/std", "frame-system/std" ] requests = [ ] responses = [ ] std = [ "log/std", "codec/std", "scale-info/std", "xbi-format/std", "xbi-sender/std", "sp-std/std", "sp-io/std", "sp-core/std", "sp-runtime/std", "xbi-channel-primitives/std", ]