[package] name = "cumulus-primitives-utility" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] # Substrate dependencies sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.11" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.11" } sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.11" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.11" } # Polkadot dependencies polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.11" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.11" } polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.11" } xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.11" } cumulus-primitives-core = { path = "../core", default-features = false } # Other dependencies codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = [ "derive" ] } [features] default = [ "std" ] std = [ "codec/std", "sp-std/std", "polkadot-primitives/std", "polkadot-parachain/std", "polkadot-core-primitives/std", "sp-runtime/std", "sp-trie/std", "frame-support/std", "cumulus-primitives-core/std", ]