mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
41b65c28cf
* flag for rejecting all outbound messages * update weights * Revert "update weights" This reverts commit 992b866edc7c9fd97013cee9cd68b9d783f8681e. * Revert "flag for rejecting all outbound messages" This reverts commit d094964bb4f8800ab6978b9d4b12aade2f80d266. * OperatingMode * Update modules/messages/src/lib.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Poke CI * RustFmt Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Hernando Castano <hernando@hcastano.com>
33 lines
1010 B
TOML
33 lines
1010 B
TOML
[package]
|
|
name = "bp-messages"
|
|
description = "Primitives of messages module."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"serde",
|
|
"sp-std/std"
|
|
]
|