Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Implement Bridge Module #3703

Closed
wants to merge 13 commits into from
Closed
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ members = [
"frame/authorship",
"frame/babe",
"frame/balances",
"frame/bridge",
"frame/collective",
"frame/contracts",
"frame/contracts/rpc",
Expand Down
38 changes: 38 additions & 0 deletions frame/bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[package]
name = "pallet-bridge"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
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",
]
Loading