mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
9d6c0f446a
Co-authored-by: Bastian Köcher <git@kchr.de>
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "snowbridge-outbound-queue-runtime-api"
|
|
description = "Snowbridge Outbound Queue Runtime API"
|
|
version = "0.2.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { version = "3.1.5", package = "parity-scale-codec", features = ["derive"], default-features = false }
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false }
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
|
|
snowbridge-outbound-queue-merkle-tree = { path = "../merkle-tree", default-features = false }
|
|
snowbridge-core = { path = "../../../primitives/core", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-outbound-queue-merkle-tree/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
]
|