1[package]2edition = "2021"3name = "tests"4version = "0.1.1"56[package.metadata.deppatcher.originals.dependencies]7sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }8sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }9sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }10sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }11frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }12frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }13pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }14pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }15pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }16up-sponsorship = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.39" }17pallet-ethereum = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.39" }18pallet-evm = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.39" }1920[features]21default = ['refungible']2223refungible = []2425[dependencies]26up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2728sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }29sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }30sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }31sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }3233frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }34frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }3536pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }37pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }38pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }3940pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.41" }41pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.41" }4243pallet-common.path = "../../pallets/common"44pallet-fungible.path = "../../pallets/fungible"45pallet-nonfungible.path = "../../pallets/nonfungible"46pallet-refungible.path = "../../pallets/refungible"47pallet-structure.path = "../../pallets/structure"48pallet-unique.path = "../../pallets/unique"4950pallet-evm-coder-substrate.path = "../../pallets/evm-coder-substrate"5152parity-scale-codec = { version = "3.2.2", default-features = false, features = ["derive"] }53scale-info = "*"5455evm-coder = { workspace = true }56up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.41" }57xcm = { workspace = true }58pallet-xcm = { workspace = true }59pallet-configuration = { workspace = true }