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

difftreelog

build update lockfile

Yaroslav Bolyukin2021-10-26parent: #c9cf876.patch.diff
in: master

1 file changed

modifiedruntime/Cargo.tomldiffbeforeafterboth
before · runtime/Cargo.toml
1################################################################################2# Package 34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '3.0.0'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-evm-migration/runtime-benchmarks',27    'pallet-balances/runtime-benchmarks',28    'pallet-timestamp/runtime-benchmarks',29    'pallet-common/runtime-benchmarks',30    'pallet-fungible/runtime-benchmarks',31    'pallet-refungible/runtime-benchmarks',32    'pallet-nonfungible/runtime-benchmarks',33    'pallet-nft/runtime-benchmarks',34    'pallet-inflation/runtime-benchmarks',35    'pallet-xcm/runtime-benchmarks',36    'sp-runtime/runtime-benchmarks',37    'xcm-builder/runtime-benchmarks',38]39std = [40    'codec/std',41    'cumulus-pallet-aura-ext/std',42    'cumulus-pallet-parachain-system/std',43    'cumulus-pallet-xcm/std',44    'cumulus-pallet-xcmp-queue/std',45    'cumulus-primitives-core/std',46    'cumulus-primitives-utility/std',47    'frame-executive/std',48    'frame-support/std',49    'frame-system/std',50    'frame-system-rpc-runtime-api/std',51    'pallet-aura/std',52    'pallet-balances/std',53    # 'pallet-contracts/std',54    # 'pallet-contracts-primitives/std',55    # 'pallet-contracts-rpc-runtime-api/std',56    # 'pallet-contract-helpers/std',57    'pallet-randomness-collective-flip/std',58    'pallet-sudo/std',59    'pallet-timestamp/std',60    'pallet-transaction-payment/std',61    'pallet-transaction-payment-rpc-runtime-api/std',62    'pallet-treasury/std',63    'pallet-vesting/std',64    'pallet-evm/std',65    'pallet-evm-migration/std',66    'pallet-evm-contract-helpers/std',67    'pallet-evm-transaction-payment/std',68    'pallet-evm-coder-substrate/std',69    'pallet-ethereum/std',70    'fp-rpc/std',71    'parachain-info/std',72    'serde',73    'pallet-inflation/std',74    'pallet-common/std',75    'pallet-fungible/std',76    'pallet-refungible/std',77    'pallet-nonfungible/std',78    'pallet-nft/std',79    'pallet-scheduler/std',80    'pallet-nft-charge-transaction/std',81    'pallet-nft-transaction-payment/std',82    'nft-data-structs/std',83    'sp-api/std',84    'sp-block-builder/std',85    "sp-consensus-aura/std",86    'sp-core/std',87    'sp-inherents/std',88    'sp-io/std',89    'sp-offchain/std',90    'sp-runtime/std',91    'sp-session/std',92    'sp-std/std',93    'sp-transaction-pool/std',94    'sp-version/std',95    'xcm/std',96    'xcm-builder/std',97    'xcm-executor/std',98]99limit-testing = ['pallet-nft/limit-testing', 'nft-data-structs/limit-testing']100101################################################################################102# Substrate Dependencies103104[dependencies.codec]105default-features = false106features = ['derive']107package = 'parity-scale-codec'108version = '2.3.0'109110[dependencies.frame-benchmarking]111default-features = false112git = 'https://github.com/paritytech/substrate.git'113optional = true114branch = 'polkadot-v0.9.10'115version = '4.0.0-dev'116117[dependencies.frame-executive]118default-features = false119git = 'https://github.com/paritytech/substrate.git'120branch = 'polkadot-v0.9.10'121version = '4.0.0-dev'122123[dependencies.frame-support]124default-features = false125git = 'https://github.com/paritytech/substrate.git'126branch = 'polkadot-v0.9.10'127version = '4.0.0-dev'128129[dependencies.frame-system]130default-features = false131git = 'https://github.com/paritytech/substrate.git'132branch = 'polkadot-v0.9.10'133version = '4.0.0-dev'134135[dependencies.frame-system-benchmarking]136default-features = false137git = 'https://github.com/paritytech/substrate.git'138optional = true139branch = 'polkadot-v0.9.10'140version = '4.0.0-dev'141142[dependencies.frame-system-rpc-runtime-api]143default-features = false144git = 'https://github.com/paritytech/substrate.git'145branch = 'polkadot-v0.9.10'146version = '4.0.0-dev'147148[dependencies.hex-literal]149optional = true150version = '0.3.3'151152[dependencies.serde]153default-features = false154features = ['derive']155optional = true156version = '1.0.130'157158[dependencies.pallet-aura]159default-features = false160git = 'https://github.com/paritytech/substrate.git'161branch = 'polkadot-v0.9.10'162version = '4.0.0-dev'163164[dependencies.pallet-balances]165default-features = false166git = 'https://github.com/paritytech/substrate.git'167branch = 'polkadot-v0.9.10'168version = '4.0.0-dev'169170# Contracts specific packages171# [dependencies.pallet-contracts]172# git = 'https://github.com/paritytech/substrate.git'173# default-features = false174# branch = 'polkadot-v0.9.10'175# version = '4.0.0-dev'176177# [dependencies.pallet-contracts-primitives]178# git = 'https://github.com/paritytech/substrate.git'179# default-features = false180# branch = 'polkadot-v0.9.10'181# version = '4.0.0-dev'182183# [dependencies.pallet-contracts-rpc-runtime-api]184# git = 'https://github.com/paritytech/substrate.git'185# default-features = false186# branch = 'polkadot-v0.9.10'187# version = '4.0.0-dev'188189[dependencies.pallet-randomness-collective-flip]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.10'193version = '4.0.0-dev'194195[dependencies.pallet-sudo]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.10'199version = '4.0.0-dev'200201[dependencies.pallet-timestamp]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.10'205version = '4.0.0-dev'206207[dependencies.pallet-transaction-payment]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.10'211version = '4.0.0-dev'212213[dependencies.pallet-transaction-payment-rpc-runtime-api]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.10'217version = '4.0.0-dev'218219[dependencies.pallet-treasury]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.10'223version = '4.0.0-dev'224225[dependencies.pallet-vesting]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.10'229version = '4.0.0-dev'230231[dependencies.sp-arithmetic]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.10'235version = '4.0.0-dev'236237[dependencies.sp-api]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.10'241version = '4.0.0-dev'242243[dependencies.sp-block-builder]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.10'247version = '4.0.0-dev'248249[dependencies.sp-core]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.10'253version = '4.0.0-dev'254255[dependencies.sp-consensus-aura]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.10'259version = '0.10.0-dev'260261[dependencies.sp-inherents]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.10'265version = '4.0.0-dev'266267[dependencies.sp-io]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.10'271version = '4.0.0-dev'272273[dependencies.sp-offchain]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.10'277version = '4.0.0-dev'278279[dependencies.sp-runtime]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.10'283version = '4.0.0-dev'284285[dependencies.sp-session]286default-features = false287git = 'https://github.com/paritytech/substrate.git'288branch = 'polkadot-v0.9.10'289version = '4.0.0-dev'290291[dependencies.sp-std]292default-features = false293git = 'https://github.com/paritytech/substrate.git'294branch = 'polkadot-v0.9.10'295version = '4.0.0-dev'296297[dependencies.sp-transaction-pool]298default-features = false299git = 'https://github.com/paritytech/substrate.git'300branch = 'polkadot-v0.9.10'301version = '4.0.0-dev'302303[dependencies.sp-version]304default-features = false305git = 'https://github.com/paritytech/substrate.git'306branch = 'polkadot-v0.9.10'307version = '4.0.0-dev'308309[dependencies.smallvec]310version = '1.6.1'311312################################################################################313# Cumulus dependencies314315[dependencies.parachain-info]316default-features = false317git = 'https://github.com/paritytech/cumulus.git'318branch = 'polkadot-v0.9.10'319version = '0.1.0'320321[dependencies.cumulus-pallet-aura-ext]322git = 'https://github.com/paritytech/cumulus.git'323branch = 'polkadot-v0.9.10'324default-features = false325326[dependencies.cumulus-pallet-parachain-system]327git = 'https://github.com/paritytech/cumulus.git'328branch = 'polkadot-v0.9.10'329default-features = false330331[dependencies.cumulus-primitives-core]332git = 'https://github.com/paritytech/cumulus.git'333branch = 'polkadot-v0.9.10'334default-features = false335336[dependencies.cumulus-pallet-xcm]337git = 'https://github.com/paritytech/cumulus.git'338branch = 'polkadot-v0.9.10'339default-features = false340341[dependencies.cumulus-pallet-dmp-queue]342git = 'https://github.com/paritytech/cumulus.git'343branch = 'polkadot-v0.9.10'344default-features = false345346[dependencies.cumulus-pallet-xcmp-queue]347git = 'https://github.com/paritytech/cumulus.git'348branch = 'polkadot-v0.9.10'349default-features = false350351[dependencies.cumulus-primitives-utility]352git = 'https://github.com/paritytech/cumulus.git'353branch = 'polkadot-v0.9.10'354default-features = false355356[dependencies.cumulus-primitives-timestamp]357git = 'https://github.com/paritytech/cumulus.git'358branch = 'polkadot-v0.9.10'359default-features = false360361################################################################################362# Polkadot dependencies363364[dependencies.polkadot-parachain]365git = 'https://github.com/paritytech/polkadot'366branch = 'release-v0.9.10'367default-features = false368369[dependencies.xcm]370git = 'https://github.com/paritytech/polkadot'371branch = 'release-v0.9.10'372default-features = false373374[dependencies.xcm-builder]375git = 'https://github.com/paritytech/polkadot'376branch = 'release-v0.9.10'377default-features = false378379[dependencies.xcm-executor]380git = 'https://github.com/paritytech/polkadot'381branch = 'release-v0.9.10'382default-features = false383384[dependencies.pallet-xcm]385git = 'https://github.com/paritytech/polkadot'386branch = 'release-v0.9.10'387default-features = false388389390################################################################################391# local dependencies392393[dependencies]394derivative = "2.2.0"395pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }396up-rpc = { path = "../primitives/rpc", default-features = false }397pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }398nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }399pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }400pallet-common = { default-features = false, path = "../pallets/common" }401pallet-fungible = { default-features = false, path = "../pallets/fungible" }402pallet-refungible = { default-features = false, path = "../pallets/refungible" }403pallet-nonfungible = { default-features = false, path = "../pallets/nonfungible" }404# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }405pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }406pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }407pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }408pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }409pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }410pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }411412pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }413pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }414fp-rpc = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }415416################################################################################417# Build Dependencies418419[build-dependencies.substrate-wasm-builder]420git = 'https://github.com/paritytech/substrate.git'421branch = 'polkadot-v0.9.10'422version = '5.0.0-dev'
after · runtime/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '3.0.0'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-evm-migration/runtime-benchmarks',27    'pallet-balances/runtime-benchmarks',28    'pallet-timestamp/runtime-benchmarks',29    'pallet-common/runtime-benchmarks',30    'pallet-fungible/runtime-benchmarks',31    'pallet-refungible/runtime-benchmarks',32    'pallet-nonfungible/runtime-benchmarks',33    'pallet-nft/runtime-benchmarks',34    'pallet-inflation/runtime-benchmarks',35    'pallet-xcm/runtime-benchmarks',36    'sp-runtime/runtime-benchmarks',37    'xcm-builder/runtime-benchmarks',38]39std = [40    'codec/std',41    'cumulus-pallet-aura-ext/std',42    'cumulus-pallet-parachain-system/std',43    'cumulus-pallet-xcm/std',44    'cumulus-pallet-xcmp-queue/std',45    'cumulus-primitives-core/std',46    'cumulus-primitives-utility/std',47    'frame-executive/std',48    'frame-support/std',49    'frame-system/std',50    'frame-system-rpc-runtime-api/std',51    'pallet-aura/std',52    'pallet-balances/std',53    # 'pallet-contracts/std',54    # 'pallet-contracts-primitives/std',55    # 'pallet-contracts-rpc-runtime-api/std',56    # 'pallet-contract-helpers/std',57    'pallet-randomness-collective-flip/std',58    'pallet-sudo/std',59    'pallet-timestamp/std',60    'pallet-transaction-payment/std',61    'pallet-transaction-payment-rpc-runtime-api/std',62    'pallet-treasury/std',63    'pallet-vesting/std',64    'pallet-evm/std',65    'pallet-evm-migration/std',66    'pallet-evm-contract-helpers/std',67    'pallet-evm-transaction-payment/std',68    'pallet-evm-coder-substrate/std',69    'pallet-ethereum/std',70    'fp-rpc/std',71    'up-rpc/std',72    'parachain-info/std',73    'serde',74    'pallet-inflation/std',75    'pallet-common/std',76    'pallet-fungible/std',77    'pallet-refungible/std',78    'pallet-nonfungible/std',79    'pallet-nft/std',80    'pallet-scheduler/std',81    'pallet-nft-charge-transaction/std',82    'pallet-nft-transaction-payment/std',83    'nft-data-structs/std',84    'sp-api/std',85    'sp-block-builder/std',86    "sp-consensus-aura/std",87    'sp-core/std',88    'sp-inherents/std',89    'sp-io/std',90    'sp-offchain/std',91    'sp-runtime/std',92    'sp-session/std',93    'sp-std/std',94    'sp-transaction-pool/std',95    'sp-version/std',96    'xcm/std',97    'xcm-builder/std',98    'xcm-executor/std',99]100limit-testing = ['pallet-nft/limit-testing', 'nft-data-structs/limit-testing']101102################################################################################103# Substrate Dependencies104105[dependencies.codec]106default-features = false107features = ['derive']108package = 'parity-scale-codec'109version = '2.3.0'110111[dependencies.frame-benchmarking]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114optional = true115branch = 'polkadot-v0.9.10'116version = '4.0.0-dev'117118[dependencies.frame-executive]119default-features = false120git = 'https://github.com/paritytech/substrate.git'121branch = 'polkadot-v0.9.10'122version = '4.0.0-dev'123124[dependencies.frame-support]125default-features = false126git = 'https://github.com/paritytech/substrate.git'127branch = 'polkadot-v0.9.10'128version = '4.0.0-dev'129130[dependencies.frame-system]131default-features = false132git = 'https://github.com/paritytech/substrate.git'133branch = 'polkadot-v0.9.10'134version = '4.0.0-dev'135136[dependencies.frame-system-benchmarking]137default-features = false138git = 'https://github.com/paritytech/substrate.git'139optional = true140branch = 'polkadot-v0.9.10'141version = '4.0.0-dev'142143[dependencies.frame-system-rpc-runtime-api]144default-features = false145git = 'https://github.com/paritytech/substrate.git'146branch = 'polkadot-v0.9.10'147version = '4.0.0-dev'148149[dependencies.hex-literal]150optional = true151version = '0.3.3'152153[dependencies.serde]154default-features = false155features = ['derive']156optional = true157version = '1.0.130'158159[dependencies.pallet-aura]160default-features = false161git = 'https://github.com/paritytech/substrate.git'162branch = 'polkadot-v0.9.10'163version = '4.0.0-dev'164165[dependencies.pallet-balances]166default-features = false167git = 'https://github.com/paritytech/substrate.git'168branch = 'polkadot-v0.9.10'169version = '4.0.0-dev'170171# Contracts specific packages172# [dependencies.pallet-contracts]173# git = 'https://github.com/paritytech/substrate.git'174# default-features = false175# branch = 'polkadot-v0.9.10'176# version = '4.0.0-dev'177178# [dependencies.pallet-contracts-primitives]179# git = 'https://github.com/paritytech/substrate.git'180# default-features = false181# branch = 'polkadot-v0.9.10'182# version = '4.0.0-dev'183184# [dependencies.pallet-contracts-rpc-runtime-api]185# git = 'https://github.com/paritytech/substrate.git'186# default-features = false187# branch = 'polkadot-v0.9.10'188# version = '4.0.0-dev'189190[dependencies.pallet-randomness-collective-flip]191default-features = false192git = 'https://github.com/paritytech/substrate.git'193branch = 'polkadot-v0.9.10'194version = '4.0.0-dev'195196[dependencies.pallet-sudo]197default-features = false198git = 'https://github.com/paritytech/substrate.git'199branch = 'polkadot-v0.9.10'200version = '4.0.0-dev'201202[dependencies.pallet-timestamp]203default-features = false204git = 'https://github.com/paritytech/substrate.git'205branch = 'polkadot-v0.9.10'206version = '4.0.0-dev'207208[dependencies.pallet-transaction-payment]209default-features = false210git = 'https://github.com/paritytech/substrate.git'211branch = 'polkadot-v0.9.10'212version = '4.0.0-dev'213214[dependencies.pallet-transaction-payment-rpc-runtime-api]215default-features = false216git = 'https://github.com/paritytech/substrate.git'217branch = 'polkadot-v0.9.10'218version = '4.0.0-dev'219220[dependencies.pallet-treasury]221default-features = false222git = 'https://github.com/paritytech/substrate.git'223branch = 'polkadot-v0.9.10'224version = '4.0.0-dev'225226[dependencies.pallet-vesting]227default-features = false228git = 'https://github.com/paritytech/substrate.git'229branch = 'polkadot-v0.9.10'230version = '4.0.0-dev'231232[dependencies.sp-arithmetic]233default-features = false234git = 'https://github.com/paritytech/substrate.git'235branch = 'polkadot-v0.9.10'236version = '4.0.0-dev'237238[dependencies.sp-api]239default-features = false240git = 'https://github.com/paritytech/substrate.git'241branch = 'polkadot-v0.9.10'242version = '4.0.0-dev'243244[dependencies.sp-block-builder]245default-features = false246git = 'https://github.com/paritytech/substrate.git'247branch = 'polkadot-v0.9.10'248version = '4.0.0-dev'249250[dependencies.sp-core]251default-features = false252git = 'https://github.com/paritytech/substrate.git'253branch = 'polkadot-v0.9.10'254version = '4.0.0-dev'255256[dependencies.sp-consensus-aura]257default-features = false258git = 'https://github.com/paritytech/substrate.git'259branch = 'polkadot-v0.9.10'260version = '0.10.0-dev'261262[dependencies.sp-inherents]263default-features = false264git = 'https://github.com/paritytech/substrate.git'265branch = 'polkadot-v0.9.10'266version = '4.0.0-dev'267268[dependencies.sp-io]269default-features = false270git = 'https://github.com/paritytech/substrate.git'271branch = 'polkadot-v0.9.10'272version = '4.0.0-dev'273274[dependencies.sp-offchain]275default-features = false276git = 'https://github.com/paritytech/substrate.git'277branch = 'polkadot-v0.9.10'278version = '4.0.0-dev'279280[dependencies.sp-runtime]281default-features = false282git = 'https://github.com/paritytech/substrate.git'283branch = 'polkadot-v0.9.10'284version = '4.0.0-dev'285286[dependencies.sp-session]287default-features = false288git = 'https://github.com/paritytech/substrate.git'289branch = 'polkadot-v0.9.10'290version = '4.0.0-dev'291292[dependencies.sp-std]293default-features = false294git = 'https://github.com/paritytech/substrate.git'295branch = 'polkadot-v0.9.10'296version = '4.0.0-dev'297298[dependencies.sp-transaction-pool]299default-features = false300git = 'https://github.com/paritytech/substrate.git'301branch = 'polkadot-v0.9.10'302version = '4.0.0-dev'303304[dependencies.sp-version]305default-features = false306git = 'https://github.com/paritytech/substrate.git'307branch = 'polkadot-v0.9.10'308version = '4.0.0-dev'309310[dependencies.smallvec]311version = '1.6.1'312313################################################################################314# Cumulus dependencies315316[dependencies.parachain-info]317default-features = false318git = 'https://github.com/paritytech/cumulus.git'319branch = 'polkadot-v0.9.10'320version = '0.1.0'321322[dependencies.cumulus-pallet-aura-ext]323git = 'https://github.com/paritytech/cumulus.git'324branch = 'polkadot-v0.9.10'325default-features = false326327[dependencies.cumulus-pallet-parachain-system]328git = 'https://github.com/paritytech/cumulus.git'329branch = 'polkadot-v0.9.10'330default-features = false331332[dependencies.cumulus-primitives-core]333git = 'https://github.com/paritytech/cumulus.git'334branch = 'polkadot-v0.9.10'335default-features = false336337[dependencies.cumulus-pallet-xcm]338git = 'https://github.com/paritytech/cumulus.git'339branch = 'polkadot-v0.9.10'340default-features = false341342[dependencies.cumulus-pallet-dmp-queue]343git = 'https://github.com/paritytech/cumulus.git'344branch = 'polkadot-v0.9.10'345default-features = false346347[dependencies.cumulus-pallet-xcmp-queue]348git = 'https://github.com/paritytech/cumulus.git'349branch = 'polkadot-v0.9.10'350default-features = false351352[dependencies.cumulus-primitives-utility]353git = 'https://github.com/paritytech/cumulus.git'354branch = 'polkadot-v0.9.10'355default-features = false356357[dependencies.cumulus-primitives-timestamp]358git = 'https://github.com/paritytech/cumulus.git'359branch = 'polkadot-v0.9.10'360default-features = false361362################################################################################363# Polkadot dependencies364365[dependencies.polkadot-parachain]366git = 'https://github.com/paritytech/polkadot'367branch = 'release-v0.9.10'368default-features = false369370[dependencies.xcm]371git = 'https://github.com/paritytech/polkadot'372branch = 'release-v0.9.10'373default-features = false374375[dependencies.xcm-builder]376git = 'https://github.com/paritytech/polkadot'377branch = 'release-v0.9.10'378default-features = false379380[dependencies.xcm-executor]381git = 'https://github.com/paritytech/polkadot'382branch = 'release-v0.9.10'383default-features = false384385[dependencies.pallet-xcm]386git = 'https://github.com/paritytech/polkadot'387branch = 'release-v0.9.10'388default-features = false389390391################################################################################392# local dependencies393394[dependencies]395derivative = "2.2.0"396pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }397up-rpc = { path = "../primitives/rpc", default-features = false }398pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }399nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }400pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }401pallet-common = { default-features = false, path = "../pallets/common" }402pallet-fungible = { default-features = false, path = "../pallets/fungible" }403pallet-refungible = { default-features = false, path = "../pallets/refungible" }404pallet-nonfungible = { default-features = false, path = "../pallets/nonfungible" }405# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }406pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }407pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }408pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }409pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }410pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }411pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }412413pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }414pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }415fp-rpc = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }416417################################################################################418# Build Dependencies419420[build-dependencies.substrate-wasm-builder]421git = 'https://github.com/paritytech/substrate.git'422branch = 'polkadot-v0.9.10'423version = '5.0.0-dev'