From d412fe4701e11389685e34e7cf06c0b60ff7b14c Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 08 Jul 2021 11:51:50 +0000 Subject: [PATCH] build: remove useless nft dependency on contracts --- --- 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' --- a/primitives/nft/Cargo.toml +++ b/primitives/nft/Cargo.toml @@ -13,7 +13,6 @@ serde = { version = "1.0.119", features = ['derive'], default-features = false } frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' } frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' } -pallet-contracts = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' } sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' } sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' } @@ -26,5 +25,4 @@ "frame-support/std", "sp-runtime/std", "sp-core/std", - "pallet-contracts/std", ] \ No newline at end of file -- gitstuff