git.delta.rocks / unique-network / refs/commits / 26386c57998e

difftreelog

source

runtime/tests/Cargo.toml2.0 KiBsourcehistory
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.24' }11sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }12sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }13sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }1415fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }1617frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }18frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }1920pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }21pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }22pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }2324pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }25pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }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 = { version = "3.1.2", default-features = false, features = [37	"derive",38] }39scale-info = "*"