mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-23 17:28:23 +00:00
31 lines
879 B
TOML
31 lines
879 B
TOML
[package]
|
|
authors = { workspace = true }
|
|
description = "Pallet for storing the latest commitment hash from the outbound queue for cross-chain verification"
|
|
edition = { workspace = true }
|
|
name = "pallet-outbound-commitment-store"
|
|
version = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, features = ["derive"] }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
scale-info = { workspace = true, features = ["derive"] }
|
|
sp-core = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime", "frame-system/try-runtime"]
|