difftreelog
build remove useless nft dependency on contracts
in: master
2 files changed
pallets/nft/Cargo.tomldiffbeforeafterboth1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Substrate node nft'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'10name = 'pallet-nft'11repository = 'https://github.com/usetech-llc/nft_private/'12version = '3.0.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking']20std = [21 'codec/std',22 'serde/std',23 'frame-support/std',24 'frame-system/std',25 'pallet-balances/std',26 'pallet-evm/std',27 'pallet-timestamp/std',28 'pallet-contracts/std',29 'pallet-randomness-collective-flip/std',30 'pallet-transaction-payment/std',31 'fp-evm/std',32 'nft-data-structs/std',33 'up-sponsorship/std',34 'sp-std/std',35 'sp-api/std',36 'sp-runtime/std',37 'frame-benchmarking/std',38 'ethereum/std',39 'rlp/std',4041 'ethereum-tx-sign',42 'primitive-types/std',43 'evm-coder/std',44]4546################################################################################47# Substrate Dependencies4849[dependencies.codec]50default-features = false51features = ['derive']52package = 'parity-scale-codec'53version = '2.0.0'5455[dependencies.frame-benchmarking]56default-features = false57optional = true58git = 'https://github.com/paritytech/substrate.git'59branch = 'polkadot-v0.9.7'60version = '3.0.0'6162[dependencies.frame-support]63default-features = false64git = 'https://github.com/paritytech/substrate.git'65branch = 'polkadot-v0.9.7'66version = '3.0.0'6768[dependencies.frame-system]69default-features = false70git = 'https://github.com/paritytech/substrate.git'71branch = 'polkadot-v0.9.7'72version = '3.0.0'7374[dependencies.pallet-balances]75default-features = false76git = 'https://github.com/paritytech/substrate.git'77branch = 'polkadot-v0.9.7'78version = '3.0.0'7980[dependencies.pallet-timestamp]81default-features = false82git = 'https://github.com/paritytech/substrate.git'83branch = 'polkadot-v0.9.7'84version = '3.0.0'8586[dependencies.pallet-randomness-collective-flip]87default-features = false88git = 'https://github.com/paritytech/substrate.git'89branch = 'polkadot-v0.9.7'90version = '3.0.0'9192[dependencies.sp-std]93default-features = false94git = 'https://github.com/paritytech/substrate.git'95branch = 'polkadot-v0.9.7'96version = '3.0.0'9798[dependencies.pallet-contracts]99default-features = false100git = 'https://github.com/paritytech/substrate.git'101branch = 'polkadot-v0.9.7'102version = '3.0.0'103104[dependencies.pallet-transaction-payment]105default-features = false106git = 'https://github.com/paritytech/substrate.git'107branch = 'polkadot-v0.9.7'108version = '3.0.0'109110[dependencies.serde]111default-features = false112features = ['derive']113version = '1.0.119'114115[dependencies.sp-runtime]116default-features = false117git = 'https://github.com/paritytech/substrate.git'118branch = 'polkadot-v0.9.7'119version = '3.0.0'120121[dependencies.sp-core]122default-features = false123git = 'https://github.com/paritytech/substrate.git'124branch = 'polkadot-v0.9.7'125version = '3.0.0'126127[dependencies.sp-io]128default-features = false129git = 'https://github.com/paritytech/substrate.git'130branch = 'polkadot-v0.9.7'131version = '3.0.0'132133134################################################################################135# Local Dependencies136137[dependencies.nft-data-structs]138default-features = false139path = '../../primitives/nft'140version = '0.9.0'141142[dependencies.up-sponsorship]143default-features = false144path = '../../primitives/sponsorship'145version = '0.1.0'146147148[dependencies]149ethereum-tx-sign = { version = "3.0.4", optional = true }150ethereum = { default-features = false, version = "0.7.1" }151rlp = { default-features = false, version = "0.5.0" }152sp-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.7" }153154evm-coder = { default-features = false, path = "../../crates/evm-coder" }155primitive-types = { version = "0.9.0", default-features = false, features = ["serde_no_std"] }156157pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }158pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }159fp-evm = { default-features = false, version = '2.0.0', git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }160hex-literal = "0.3.1"1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Substrate node nft'7edition = '2018'8homepage = 'https://unique.network'9license = 'All Rights Reserved'10name = 'pallet-nft'11repository = 'https://github.com/usetech-llc/nft_private/'12version = '3.0.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking']20std = [21 'codec/std',22 'serde/std',23 'frame-support/std',24 'frame-system/std',25 'pallet-balances/std',26 'pallet-evm/std',27 'pallet-timestamp/std',28 'pallet-randomness-collective-flip/std',29 'pallet-transaction-payment/std',30 'fp-evm/std',31 'nft-data-structs/std',32 'up-sponsorship/std',33 'sp-std/std',34 'sp-api/std',35 'sp-runtime/std',36 'frame-benchmarking/std',37 'ethereum/std',38 'rlp/std',3940 'ethereum-tx-sign',41 'primitive-types/std',42 'evm-coder/std',43]4445################################################################################46# Substrate Dependencies4748[dependencies.codec]49default-features = false50features = ['derive']51package = 'parity-scale-codec'52version = '2.0.0'5354[dependencies.frame-benchmarking]55default-features = false56optional = true57git = 'https://github.com/paritytech/substrate.git'58branch = 'polkadot-v0.9.7'59version = '3.0.0'6061[dependencies.frame-support]62default-features = false63git = 'https://github.com/paritytech/substrate.git'64branch = 'polkadot-v0.9.7'65version = '3.0.0'6667[dependencies.frame-system]68default-features = false69git = 'https://github.com/paritytech/substrate.git'70branch = 'polkadot-v0.9.7'71version = '3.0.0'7273[dependencies.pallet-balances]74default-features = false75git = 'https://github.com/paritytech/substrate.git'76branch = 'polkadot-v0.9.7'77version = '3.0.0'7879[dependencies.pallet-timestamp]80default-features = false81git = 'https://github.com/paritytech/substrate.git'82branch = 'polkadot-v0.9.7'83version = '3.0.0'8485[dependencies.pallet-randomness-collective-flip]86default-features = false87git = 'https://github.com/paritytech/substrate.git'88branch = 'polkadot-v0.9.7'89version = '3.0.0'9091[dependencies.sp-std]92default-features = false93git = 'https://github.com/paritytech/substrate.git'94branch = 'polkadot-v0.9.7'95version = '3.0.0'9697[dependencies.pallet-transaction-payment]98default-features = false99git = 'https://github.com/paritytech/substrate.git'100branch = 'polkadot-v0.9.7'101version = '3.0.0'102103[dependencies.serde]104default-features = false105features = ['derive']106version = '1.0.119'107108[dependencies.sp-runtime]109default-features = false110git = 'https://github.com/paritytech/substrate.git'111branch = 'polkadot-v0.9.7'112version = '3.0.0'113114[dependencies.sp-core]115default-features = false116git = 'https://github.com/paritytech/substrate.git'117branch = 'polkadot-v0.9.7'118version = '3.0.0'119120[dependencies.sp-io]121default-features = false122git = 'https://github.com/paritytech/substrate.git'123branch = 'polkadot-v0.9.7'124version = '3.0.0'125126127################################################################################128# Local Dependencies129130[dependencies.nft-data-structs]131default-features = false132path = '../../primitives/nft'133version = '0.9.0'134135[dependencies.up-sponsorship]136default-features = false137path = '../../primitives/sponsorship'138version = '0.1.0'139140141[dependencies]142ethereum-tx-sign = { version = "3.0.4", optional = true }143ethereum = { default-features = false, version = "0.7.1" }144rlp = { default-features = false, version = "0.5.0" }145sp-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.7" }146147evm-coder = { default-features = false, path = "../../crates/evm-coder" }148primitive-types = { version = "0.9.0", default-features = false, features = ["serde_no_std"] }149150pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }151pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }152fp-evm = { default-features = false, version = '2.0.0', git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions-parachain" }153hex-literal = "0.3.1"primitives/nft/Cargo.tomldiffbeforeafterboth--- 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