-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use custom Command enum and do_process_message impl
- Loading branch information
1 parent
78ba7d2
commit 676792c
Showing
9 changed files
with
761 additions
and
338 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[package] | ||
name = "tp-bridge" | ||
authors = { workspace = true } | ||
description = "Tanssi bridge primitive" | ||
edition = "2021" | ||
license = "GPL-3.0-only" | ||
version = "0.1.0" | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
dp-chain-state-snapshot = { workspace = true } | ||
dp-container-chain-genesis-data = { workspace = true } | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
impl-trait-for-tuples = { workspace = true } | ||
macro_rules_attribute = { workspace = true } | ||
parity-scale-codec = { workspace = true } | ||
scale-info = { workspace = true } | ||
serde = { workspace = true } | ||
sp-core = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
sp-std = { workspace = true } | ||
snowbridge-beacon-primitives = { workspace = true } | ||
snowbridge-core = { workspace = true } | ||
snowbridge-pallet-outbound-queue = { workspace = true } | ||
ethabi = { workspace = true } | ||
|
||
# Cumulus | ||
cumulus-primitives-core = { workspace = true } | ||
|
||
[features] | ||
default = [ "std" ] | ||
std = [ | ||
"cumulus-primitives-core/std", | ||
"dp-chain-state-snapshot/std", | ||
"dp-container-chain-genesis-data/std", | ||
"frame-support/std", | ||
"parity-scale-codec/std", | ||
"scale-info/std", | ||
"serde/std", | ||
"sp-core/std", | ||
"sp-runtime/std", | ||
"sp-std/std", | ||
"snowbridge-beacon-primitives/std", | ||
"snowbridge-core/std", | ||
"ethabi/std", | ||
"frame-system/std", | ||
"snowbridge-pallet-outbound-queue/std" | ||
] | ||
runtime-benchmarks = [ | ||
"cumulus-primitives-core/runtime-benchmarks", | ||
"frame-support/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
"snowbridge-core/runtime-benchmarks", | ||
"frame-system/runtime-benchmarks", | ||
"snowbridge-pallet-outbound-queue/runtime-benchmarks" | ||
] |
Oops, something went wrong.