git.delta.rocks / unique-network / refs/commits / 281abcbf9b51

difftreelog

source

pallets/evm-collection/Cargo.toml2.0 KiBsourcehistory
1[package]2name = "pallet-evm-collection"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9    "derive",10] }11ethereum = { version = "0.12.0", default-features = false }12log = { default-features = false, version = "0.4.14" }1314# Substrate15frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }16frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }17sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }18sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }19sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }2021# Unique22pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.21-logs" }23fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.21-logs" }2425# Locals26evm-coder = { default-features = false, path = '../../crates/evm-coder' }27pallet-common = { default-features = false, path = '../../pallets/common' }28pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }29pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }30up-data-structs = { default-features = false, path = '../../primitives/data-structs' }3132[dependencies.codec]33default-features = false34features = ['derive']35package = 'parity-scale-codec'36version = '3.1.2'3738[features]39default = ["std"]40std = [41    "frame-support/std",42    "frame-system/std",43    "sp-runtime/std",44    "sp-std/std",45    "sp-core/std",46    "evm-coder/std",47    "pallet-evm-coder-substrate/std",48    "pallet-evm/std",49]