difftreelog
build remove useless nft dependency on contracts
in: master
2 files changed
pallets/nft/Cargo.tomldiffbeforeafterboth--- a/pallets/nft/Cargo.toml
+++ b/pallets/nft/Cargo.toml
@@ -25,7 +25,6 @@
'pallet-balances/std',
'pallet-evm/std',
'pallet-timestamp/std',
- 'pallet-contracts/std',
'pallet-randomness-collective-flip/std',
'pallet-transaction-payment/std',
'fp-evm/std',
@@ -90,12 +89,6 @@
version = '3.0.0'
[dependencies.sp-std]
-default-features = false
-git = 'https://github.com/paritytech/substrate.git'
-branch = 'polkadot-v0.9.7'
-version = '3.0.0'
-
-[dependencies.pallet-contracts]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
branch = 'polkadot-v0.9.7'
primitives/nft/Cargo.tomldiffbeforeafterboth1[package]2name = "nft-data-structs"3authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']4description = "Nft data structs definitions"5edition = "2018"6license = 'GPL-3.0'7homepage = "https://substrate.dev"8repository = 'https://github.com/clover-network/clover'9version = '0.9.0'1011[dependencies]12codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ['derive'] }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' }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' }18sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }1920[features]21default = ["std"]22std = [23 "serde/std",24 "codec/std",25 "frame-system/std",26 "frame-support/std",27 "sp-runtime/std",28 "sp-core/std",29 "pallet-contracts/std",30]1[package]2name = "nft-data-structs"3authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']4description = "Nft data structs definitions"5edition = "2018"6license = 'GPL-3.0'7homepage = "https://substrate.dev"8repository = 'https://github.com/clover-network/clover'9version = '0.9.0'1011[dependencies]12codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ['derive'] }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' }15frame-system = { default-features = false, version = '3.0.0', 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' }17sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }1819[features]20default = ["std"]21std = [22 "serde/std",23 "codec/std",24 "frame-system/std",25 "frame-support/std",26 "sp-runtime/std",27 "sp-core/std",28]