mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
35 lines
744 B
TOML
35 lines
744 B
TOML
[package]
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
description = "Snowbridge System Runtime API"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
name = "snowbridge-system-runtime-api"
|
|
repository.workspace = true
|
|
version = "0.13.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.polkadot-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
snowbridge-core.workspace = true
|
|
sp-api.workspace = true
|
|
sp-std.workspace = true
|
|
xcm.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"snowbridge-core/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
"xcm/std",
|
|
]
|