git.delta.rocks / unique-network / refs/commits / 4dff934f02cf

difftreelog

source

pallets/evm-contract-helpers/Cargo.toml2.3 KiBsourcehistory
1[package]2name = "pallet-evm-contract-helpers"3version = "0.3.0"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9    "derive",10] }11log = { default-features = false, version = "0.4.14" }12ethereum = { version = "0.14.0", default-features = false }1314# Substrate15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2021# Unique22pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }23fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }24up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }2526# Locals27evm-coder = { default-features = false, path = '../../crates/evm-coder' }28pallet-common = { default-features = false, path = '../../pallets/common' }29pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }30pallet-evm-transaction-payment = { default-features = false, path = '../../pallets/evm-transaction-payment' }31up-data-structs = { default-features = false, path = '../../primitives/data-structs', features = [32    'serde1',33] }3435[dependencies.codec]36default-features = false37features = ['derive']38package = 'parity-scale-codec'39version = '3.1.2'4041[features]42default = ["std"]43std = [44    "frame-support/std",45    "frame-system/std",46    "sp-runtime/std",47    "sp-std/std",48    "sp-core/std",49    "evm-coder/std",50    "pallet-evm-coder-substrate/std",51    "pallet-evm/std",52    "up-sponsorship/std",53    "pallet-common/std",54]55try-runtime = ["frame-support/try-runtime"]56stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]