mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 18:57:24 +00:00
e2d9b6393d
* millau -> rialto lanes integration * extrace common message-lane integration types into bridge-runtime-common * rialto_messages.rs in Millau runtime * tests * Update bin/rialto/runtime/src/millau_messages.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * RELAYER_INTEREST_PERCENT -> RELAYER_FEE_PERCENT * Update bin/runtime-common/src/messages.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * estimate_message_dispatch_and_delivery_fee returns Result * Update bin/rialto/runtime/src/millau_messages.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/rialto/runtime/src/millau_messages.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update bin/rialto/runtime/src/millau_messages.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * fmt * mowed weight formula to primitives Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "bridge-runtime-common"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/parity-bridges-common/"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-message-dispatch = { path = "../../primitives/message-dispatch", default-features = false }
|
|
bp-message-lane = { path = "../../primitives/message-lane", default-features = false }
|
|
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
pallet-bridge-call-dispatch = { path = "../../modules/call-dispatch", default-features = false }
|
|
|
|
# Substrate dependencies
|
|
|
|
frame-support = { version = "2.0", default-features = false }
|
|
sp-runtime = { version = "2.0", default-features = false }
|
|
sp-std = { version = "2.0", default-features = false }
|
|
sp-trie = { version = "2.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-message-dispatch/std",
|
|
"bp-message-lane/std",
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"pallet-bridge-call-dispatch/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
]
|