git.delta.rocks / unique-network / refs/commits / 41ba3ece5caf

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "pallet-evm-coder-substrate"3version = "0.1.0"4edition = "2018"56[dependencies]7sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.9' }8sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.9' }9ethereum = { default-features = false, version = "0.9.0" }10evm-coder = { default-features = false, path = "../../crates/evm-coder" }11pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }12pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }13frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.9' }14frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.9' }1516[dependencies.codec]17default-features = false18features = ['derive']19package = 'parity-scale-codec'20version = '2.0.0'2122[features]23default = ["std"]24std = [25    "sp-std/std",26    "sp-core/std",27    "ethereum/std",28    "evm-coder/std",29    "pallet-ethereum/std",30    "pallet-evm/std",31    "frame-support/std",32    "frame-system/std",33]