git.delta.rocks / unique-network / refs/commits / cf403ff16301

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "pallet-evm-coder-substrate"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9    "derive",10] }11sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }12sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }13ethereum = { version = "0.14.0", default-features = false }14evm-coder = { default-features = false, path = "../../crates/evm-coder" }15pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }16pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }17frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }18frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }19frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }20up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2122[dependencies.codec]23default-features = false24features = ['derive']25package = 'parity-scale-codec'26version = '3.1.2'2728[features]29default = ["std"]30std = [31    "sp-std/std",32    "sp-core/std",33    "ethereum/std",34    "evm-coder/std",35    "pallet-ethereum/std",36    "pallet-evm/std",37    "frame-support/std",38    "frame-system/std",39    'frame-benchmarking/std',40]41runtime-benchmarks = ['frame-benchmarking']42try-runtime = ["frame-support/try-runtime"]