1[package]2name = "tests"3version = "0.1.0"4edition = "2021"56[dependencies]7unique-runtime-common = { path = '../common' }8up-data-structs = { default-features = false, path = '../../primitives/data-structs' }910sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }11sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }12sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }13sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }1415fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.23" }1617frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }18frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }1920pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }21pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }22pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.23' }2324pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.23" }25pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.23" }2627pallet-common = { path = '../../pallets/common' }28pallet-structure = { path = '../../pallets/structure' }29pallet-fungible = { path = '../../pallets/fungible' }30pallet-nonfungible = { path = '../../pallets/nonfungible' }31pallet-refungible = { path = '../../pallets/refungible' }32pallet-unique = { path = '../../pallets/unique' }3334pallet-evm-coder-substrate = { path = '../../pallets/evm-coder-substrate' }3536parity-scale-codec = "*"37scale-info = "*"