git.delta.rocks / unique-network / refs/commits / 7d64f0034d5a

difftreelog

build fix versions

Yaroslav Bolyukin2022-05-12parent: #926a049.patch.diff
in: master

9 files changed

modifiednode/cli/Cargo.tomldiffbeforeafterboth
2424
25[dependencies.try-runtime-cli]25[dependencies.try-runtime-cli]
26git = 'https://github.com/paritytech/substrate'26git = 'https://github.com/paritytech/substrate'
27branch = 'polkadot-v0.9.20'27branch = 'polkadot-v0.9.21'
2828
29[dependencies.pallet-transaction-payment-rpc]29[dependencies.pallet-transaction-payment-rpc]
30git = "https://github.com/paritytech/substrate"30git = "https://github.com/paritytech/substrate"
modifiedpallets/structure/Cargo.tomldiffbeforeafterboth
4edition = "2021"4edition = "2021"
55
6[dependencies]6[dependencies]
7frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }7frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
8frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }8frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
9frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }9frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
10sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }10sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
11pallet-common = { path = "../common", default-features = false }11pallet-common = { path = "../common", default-features = false }
12parity-scale-codec = { version = "3.1.2", default-features = false, features = [12parity-scale-codec = { version = "3.1.2", default-features = false, features = [
13 "derive",13 "derive",
modifiedpallets/unique/Cargo.tomldiffbeforeafterboth
83scale-info = { version = "2.0.1", default-features = false, features = [83scale-info = { version = "2.0.1", default-features = false, features = [
84 "derive",84 "derive",
85] }85] }
86pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }86pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21" }
87pallet-common = { default-features = false, path = "../common" }87pallet-common = { default-features = false, path = "../common" }
8888
modifiedprimitives/data-structs/Cargo.tomldiffbeforeafterboth
25sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }25sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }
26derivative = "2.2.0"26derivative = "2.2.0"
27struct-versioning = { path = "../../crates/struct-versioning" }27struct-versioning = { path = "../../crates/struct-versioning" }
28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21" }
2929
30[features]30[features]
31default = ["std"]31default = ["std"]
modifiedruntime/common/Cargo.tomldiffbeforeafterboth
41[dependencies.sp-std]41[dependencies.sp-std]
42default-features = false42default-features = false
43git = 'https://github.com/paritytech/substrate'43git = 'https://github.com/paritytech/substrate'
44branch = 'polkadot-v0.9.20'44branch = 'polkadot-v0.9.21'
4545
46[dependencies.sp-runtime]46[dependencies.sp-runtime]
47default-features = false47default-features = false
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
133default-features = false133default-features = false
134git = 'https://github.com/paritytech/substrate'134git = 'https://github.com/paritytech/substrate'
135optional = true135optional = true
136branch = 'polkadot-v0.9.20'136branch = 'polkadot-v0.9.21'
137137
138[dependencies.frame-executive]138[dependencies.frame-executive]
139default-features = false139default-features = false
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
133default-features = false133default-features = false
134git = 'https://github.com/paritytech/substrate'134git = 'https://github.com/paritytech/substrate'
135optional = true135optional = true
136branch = 'polkadot-v0.9.20'136branch = 'polkadot-v0.9.21'
137137
138[dependencies.frame-executive]138[dependencies.frame-executive]
139default-features = false139default-features = false
modifiedruntime/tests/Cargo.tomldiffbeforeafterboth
7unique-runtime-common = { path = '../common' }7unique-runtime-common = { path = '../common' }
8up-data-structs = { default-features = false, path = '../../primitives/data-structs' }8up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
99
10sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }10sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
11sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }11sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
12sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }12sp-io = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
13sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }13sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
1414
15fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }15fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21" }
1616
17frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }17frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
18frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }18frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
1919
20pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }20pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
21pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }21pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
22pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.20' }22pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.21' }
2323
24pallet-evm = { default-features = false, git = 'https://github.com/uniquenetwork/frontier', branch = 'unique-polkadot-v0.9.20' }24pallet-evm = { default-features = false, git = 'https://github.com/uniquenetwork/frontier', branch = 'unique-polkadot-v0.9.21' }
25pallet-ethereum = { default-features = false, git = 'https://github.com/uniquenetwork/frontier', branch = 'unique-polkadot-v0.9.20' }25pallet-ethereum = { default-features = false, git = 'https://github.com/uniquenetwork/frontier', branch = 'unique-polkadot-v0.9.21' }
2626
27pallet-common = { path = '../../pallets/common' }27pallet-common = { path = '../../pallets/common' }
28pallet-structure = { path = '../../pallets/structure' }28pallet-structure = { path = '../../pallets/structure' }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
133default-features = false133default-features = false
134git = 'https://github.com/paritytech/substrate'134git = 'https://github.com/paritytech/substrate'
135optional = true135optional = true
136branch = 'polkadot-v0.9.20'136branch = 'polkadot-v0.9.21'
137137
138[dependencies.frame-executive]138[dependencies.frame-executive]
139default-features = false139default-features = false