mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
31 lines
795 B
TOML
31 lines
795 B
TOML
[package]
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
description = "Snowbridge Verification Primitives"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
name = "snowbridge-verification-primitives"
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[package.metadata.polkadot-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
frame-support = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
snowbridge-beacon-primitives = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"scale-info/std",
|
|
"snowbridge-beacon-primitives/std",
|
|
"sp-core/std",
|
|
"sp-std/std",
|
|
]
|