git.delta.rocks / unique-network / refs/commits / d02d6e85f5fa

difftreelog

fix unit tests

Daniel Shiposha2022-08-10parent: #18d8c65.patch.diff
in: master

1 file changed

modifiedruntime/tests/Cargo.tomldiffbeforeafterboth
before · runtime/tests/Cargo.toml
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' }
after · runtime/tests/Cargo.toml
1[package]2name = "tests"3version = "0.1.0"4edition = "2021"56[features]7default = ['refungible']89refungible = []1011[dependencies]12up-data-structs = { default-features = false, path = '../../primitives/data-structs' }1314sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }15sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }16sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }17sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }1819fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }2021frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }22frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }2324pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }25pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }26pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }2728pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }29pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }3031pallet-common = { path = '../../pallets/common' }32pallet-structure = { path = '../../pallets/structure' }33pallet-fungible = { path = '../../pallets/fungible' }34pallet-nonfungible = { path = '../../pallets/nonfungible' }35pallet-refungible = { path = '../../pallets/refungible' }36pallet-unique = { path = '../../pallets/unique' }3738pallet-evm-coder-substrate = { path = '../../pallets/evm-coder-substrate' }3940parity-scale-codec = { version = "3.1.2", default-features = false, features = [41	"derive",42] }43scale-info = "*"4445common-types = { path = "../../common-types", default-features = false }46evm-coder = { default-features = false, path = '../../crates/evm-coder' }47up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }