mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-23 17:28:23 +00:00
51 lines
No EOL
1.3 KiB
TOML
51 lines
No EOL
1.3 KiB
TOML
[package]
|
|
name = "pallet-evm-precompile-proxy"
|
|
authors = { workspace = true }
|
|
description = "A Precompile to make proxy calls encoding accessible to pallet-evm"
|
|
edition = "2021"
|
|
version = { workspace = true }
|
|
|
|
[dependencies]
|
|
|
|
# Substrate
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
pallet-balances = { workspace = true }
|
|
pallet-proxy = { workspace = true }
|
|
parity-scale-codec = { workspace = true, features = ["derive"] }
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
# Frontier
|
|
evm = { workspace = true, features = ["with-codec"] }
|
|
fp-evm = { workspace = true }
|
|
pallet-evm = { workspace = true, features = ["forbid-evm-reentrancy"] }
|
|
precompile-utils = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
# Moonbeam
|
|
precompile-utils = { workspace = true, features = ["std", "testing"] }
|
|
|
|
# Substrate
|
|
pallet-balances = { workspace = true, features = ["std"] }
|
|
pallet-timestamp = { workspace = true, features = ["std"] }
|
|
scale-info = { workspace = true, features = ["derive", "std"] }
|
|
sp-io = { workspace = true, features = ["std"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"fp-evm/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-balances/std",
|
|
"pallet-evm/std",
|
|
"pallet-proxy/std",
|
|
"parity-scale-codec/std",
|
|
"precompile-utils/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
] |