mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
93 lines
3.1 KiB
TOML
93 lines
3.1 KiB
TOML
[package]
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
description = "Snowbridge Ethereum Client Pallet"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
name = "snowbridge-pallet-ethereum-client"
|
|
repository.workspace = true
|
|
version.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 }
|
|
hex-literal = { optional = true, workspace = true, default-features = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { optional = true, workspace = true, default-features = true }
|
|
serde_json = { optional = true, workspace = true, default-features = true }
|
|
|
|
frame-benchmarking = { optional = true, workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { optional = true, workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
pallet-timestamp = { optional = true, workspace = true }
|
|
snowbridge-beacon-primitives = { workspace = true }
|
|
snowbridge-core = { workspace = true }
|
|
snowbridge-ethereum = { workspace = true }
|
|
snowbridge-inbound-queue-primitives = { workspace = true }
|
|
snowbridge-pallet-ethereum-client-fixtures = { optional = true, workspace = true }
|
|
static_assertions = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { workspace = true, default-features = true }
|
|
pallet-timestamp = { workspace = true, default-features = true }
|
|
rand = { workspace = true, default-features = true }
|
|
serde = { workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
snowbridge-pallet-ethereum-client-fixtures = { workspace = true, default-features = true }
|
|
sp-io = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
fuzzing = ["hex-literal", "pallet-timestamp", "serde", "serde_json", "sp-io"]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"hex-literal",
|
|
"pallet-timestamp?/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"snowbridge-inbound-queue-primitives/runtime-benchmarks",
|
|
"snowbridge-pallet-ethereum-client-fixtures/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-timestamp/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"snowbridge-beacon-primitives/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-ethereum/std",
|
|
"snowbridge-inbound-queue-primitives/std",
|
|
"snowbridge-pallet-ethereum-client-fixtures/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
'frame-benchmarking/std',
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-timestamp?/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
# THIS IS JUST TO AVOID TESTS RUNNING IN THE CI.
|
|
# THIS IS A TEMPORARY PALLET HERE, AND THEN WE'LL IMPORT IT FROM REMOTE.
|
|
[lib]
|
|
test = false
|