1[package]2name = "tests"3version = "0.1.0"4edition = "2021"56[dependencies]7up-data-structs = { default-features = false, path = '../../primitives/data-structs' }89sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }10sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }11sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }12sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }1314fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }1516frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }17frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }1819pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }20pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }21pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }2223pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }24pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }2526pallet-common = { path = '../../pallets/common' }27pallet-structure = { path = '../../pallets/structure' }28pallet-fungible = { path = '../../pallets/fungible' }29pallet-nonfungible = { path = '../../pallets/nonfungible' }30pallet-refungible = { path = '../../pallets/refungible' }31pallet-unique = { path = '../../pallets/unique' }3233pallet-evm-coder-substrate = { path = '../../pallets/evm-coder-substrate' }3435parity-scale-codec = { version = "3.1.2", default-features = false, features = [36 "derive",37] }38scale-info = "*"3940common-types = { path = "../../common-types", default-features = false }41evm-coder = { default-features = false, path = '../../crates/evm-coder' }42up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }