git.delta.rocks / unique-network / refs/commits / 7b3faa5ce573

difftreelog

source

pallets/evm-collection/Cargo.toml2.1 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" }13serde_json = { version = "1.0.68", default-features = false, features = ["alloc"] }1415# Substrate16frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }17frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }18sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }19sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }20sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.21' }2122# Unique23pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.21-logs" }24fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.21-logs" }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-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }31up-data-structs = { default-features = false, path = '../../primitives/data-structs', features = ["serde1"] }3233[dependencies.codec]34default-features = false35features = ['derive']36package = 'parity-scale-codec'37version = '3.1.2'3839[features]40default = ["std"]41std = [42    "frame-support/std",43    "frame-system/std",44    "sp-runtime/std",45    "sp-std/std",46    "sp-core/std",47    "evm-coder/std",48    "pallet-evm-coder-substrate/std",49    "pallet-evm/std",50]