[package] name = "pallet-bridge" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-system = { version = "2.0.0", default-features = false, path = "../system" } hash-db = { version = "0.15.2", default-features = false } pallet-session = { version = "2.0.0", default-features = false, path = "../session" } serde = { version = "1.0", optional = true } sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-finality-grandpa = { version = "2.0.0", default-features = false, path = "../../primitives/finality-grandpa" } sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-trie = { version = "2.0.0", default-features = false, path = "../../primitives/trie" } [dev-dependencies] sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" } [features] default = ["std"] std = [ "serde", "codec/std", "frame-support/std", "frame-system/std", "pallet-session/std", "sp-core/std", "sp-finality-grandpa/std", "sp-runtime/std", "sp-trie/std", "sp-io/std", ]