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

difftreelog

build remove useless nft dependency on contracts

Yaroslav Bolyukin2021-07-08parent: #3fb6236.patch.diff
in: master

2 files changed

modifiedpallets/nft/Cargo.tomldiffbeforeafterboth
25 'pallet-balances/std',25 'pallet-balances/std',
26 'pallet-evm/std',26 'pallet-evm/std',
27 'pallet-timestamp/std',27 'pallet-timestamp/std',
28 'pallet-contracts/std',
29 'pallet-randomness-collective-flip/std',28 'pallet-randomness-collective-flip/std',
30 'pallet-transaction-payment/std',29 'pallet-transaction-payment/std',
31 'fp-evm/std',30 'fp-evm/std',
95branch = 'polkadot-v0.9.7'94branch = 'polkadot-v0.9.7'
96version = '3.0.0'95version = '3.0.0'
97
98[dependencies.pallet-contracts]
99default-features = false
100git = 'https://github.com/paritytech/substrate.git'
101branch = 'polkadot-v0.9.7'
102version = '3.0.0'
10396
104[dependencies.pallet-transaction-payment]97[dependencies.pallet-transaction-payment]
105default-features = false98default-features = false
modifiedprimitives/nft/Cargo.tomldiffbeforeafterboth
13serde = { version = "1.0.119", features = ['derive'], default-features = false }13serde = { version = "1.0.119", features = ['derive'], default-features = false }
14frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }14frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
15frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }15frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
16pallet-contracts = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
17sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }16sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
18sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }17sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
1918
26 "frame-support/std",25 "frame-support/std",
27 "sp-runtime/std",26 "sp-runtime/std",
28 "sp-core/std",27 "sp-core/std",
29 "pallet-contracts/std",
30]28]