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

difftreelog

source

pallets/evm-contract-helpers/Cargo.toml1.6 KiBsourcehistory
1[package]2name = "pallet-evm-contract-helpers"3version = "0.1.0"4edition = "2018"56[dependencies]7frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }8frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }9sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }10sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }11sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }12evm-coder = { default-features = false, path = '../../crates/evm-coder' }13pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }14pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }15up-sponsorship = { default-features = false, path = '../../primitives/sponsorship' }16log = "0.4.14"1718[dependencies.codec]19default-features = false20features = ['derive']21package = 'parity-scale-codec'22version = '2.3.0'2324[features]25default = ["std"]26std = [27    "frame-support/std",28    "frame-system/std",29    "sp-runtime/std",30    "sp-std/std",31    "sp-core/std",32    "evm-coder/std",33    "pallet-evm-coder-substrate/std",34    "pallet-evm/std",35    "up-sponsorship/std",36]