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

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml1.6 KiBsourcehistory
1[package]2name = "pallet-evm-coder-substrate"3version = "0.1.0"4edition = "2021"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = [8    "derive",9] }10sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }11sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }12ethereum = { version = "0.11.1", default-features = false }13evm-coder = { default-features = false, path = "../../crates/evm-coder" }14pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.16" }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.16" }16frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }17frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }18frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }1920[dependencies.codec]21default-features = false22features = ['derive']23package = 'parity-scale-codec'24version = '2.3.0'2526[features]27default = ["std"]28std = [29    "sp-std/std",30    "sp-core/std",31    "ethereum/std",32    "evm-coder/std",33    "pallet-ethereum/std",34    "pallet-evm/std",35    "frame-support/std",36    "frame-system/std",37    'frame-benchmarking/std',38]39runtime-benchmarks = ['frame-benchmarking']