difftreelog
build update runtime dependencies
in: master
2 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,8 +5,7 @@
'pallets/*',
'primitives/*',
'runtime',
- 'crates/evm-coder',
- 'crates/evm-coder-macros',
+ 'crates/*',
]
[profile.release]
panic = 'unwind'
runtime/Cargo.tomldiffbeforeafterboth1################################################################################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-balances/runtime-benchmarks',27 'pallet-timestamp/runtime-benchmarks',28 'pallet-nft/runtime-benchmarks',29 'pallet-inflation/runtime-benchmarks',30 'sp-runtime/runtime-benchmarks',31]32std = [33 'codec/std',34 'cumulus-pallet-aura-ext/std',35 'cumulus-pallet-parachain-system/std',36 'cumulus-pallet-xcm/std',37 'cumulus-pallet-xcmp-queue/std',38 'cumulus-primitives-core/std',39 'cumulus-primitives-utility/std',40 'evm-coder-substrate/std',41 'frame-executive/std',42 'frame-support/std',43 'frame-system/std',44 'frame-system-rpc-runtime-api/std',45 'pallet-aura/std',46 'pallet-balances/std',47 # 'pallet-contracts/std',48 # 'pallet-contracts-primitives/std',49 # 'pallet-contracts-rpc-runtime-api/std',50 # 'pallet-contract-helpers/std',51 'pallet-randomness-collective-flip/std',52 'pallet-sudo/std',53 'pallet-timestamp/std',54 'pallet-transaction-payment/std',55 'pallet-transaction-payment-rpc-runtime-api/std',56 'pallet-treasury/std',57 'pallet-vesting/std',58 'pallet-evm/std',59 'pallet-ethereum/std',60 'fp-rpc/std',61 'parachain-info/std',62 'serde',63 'pallet-inflation/std',64 'pallet-nft/std',65 'pallet-scheduler/std',66 'pallet-nft-charge-transaction/std',67 'pallet-nft-transaction-payment/std', 68 'nft-data-structs/std',69 'sp-api/std',70 'sp-block-builder/std',71 "sp-consensus-aura/std",72 'sp-core/std',73 'sp-inherents/std',74 'sp-io/std',75 'sp-offchain/std',76 'sp-runtime/std',77 'sp-session/std',78 'sp-std/std',79 'sp-transaction-pool/std',80 'sp-version/std',81 'xcm/std',82 'xcm-builder/std',83 'xcm-executor/std',84]8586################################################################################87# Substrate Dependencies8889[dependencies.codec]90default-features = false91features = ['derive']92package = 'parity-scale-codec'93version = '2.0.0'9495[dependencies.frame-benchmarking]96default-features = false97git = 'https://github.com/paritytech/substrate.git'98optional = true99branch = 'polkadot-v0.9.8'100version = '3.0.0'101102[dependencies.frame-executive]103default-features = false104git = 'https://github.com/paritytech/substrate.git'105branch = 'polkadot-v0.9.8'106version = '3.0.0'107108[dependencies.frame-support]109default-features = false110git = 'https://github.com/paritytech/substrate.git'111branch = 'polkadot-v0.9.8'112version = '3.0.0'113114[dependencies.frame-system]115default-features = false116git = 'https://github.com/paritytech/substrate.git'117branch = 'polkadot-v0.9.8'118version = '3.0.0'119120[dependencies.frame-system-benchmarking]121default-features = false122git = 'https://github.com/paritytech/substrate.git'123optional = true124branch = 'polkadot-v0.9.8'125version = '3.0.0'126127[dependencies.frame-system-rpc-runtime-api]128default-features = false129git = 'https://github.com/paritytech/substrate.git'130branch = 'polkadot-v0.9.8'131version = '3.0.0'132133[dependencies.hex-literal]134optional = true135version = '0.3.1'136137[dependencies.serde]138default-features = false139features = ['derive']140optional = true141version = '1.0.119'142143[dependencies.pallet-aura]144default-features = false145git = 'https://github.com/paritytech/substrate.git'146branch = 'polkadot-v0.9.8'147version = '3.0.0'148149[dependencies.pallet-balances]150default-features = false151git = 'https://github.com/paritytech/substrate.git'152branch = 'polkadot-v0.9.8'153version = '3.0.0'154155# Contracts specific packages156# [dependencies.pallet-contracts]157# git = 'https://github.com/paritytech/substrate.git'158# default-features = false159# branch = 'polkadot-v0.9.8'160# version = '3.0.0'161162# [dependencies.pallet-contracts-primitives]163# git = 'https://github.com/paritytech/substrate.git'164# default-features = false165# branch = 'polkadot-v0.9.8'166# version = '3.0.0'167168# [dependencies.pallet-contracts-rpc-runtime-api]169# git = 'https://github.com/paritytech/substrate.git'170# default-features = false171# branch = 'polkadot-v0.9.8'172# version = '3.0.0'173174[dependencies.pallet-randomness-collective-flip]175default-features = false176git = 'https://github.com/paritytech/substrate.git'177branch = 'polkadot-v0.9.8'178version = '3.0.0'179180[dependencies.pallet-sudo]181default-features = false182git = 'https://github.com/paritytech/substrate.git'183branch = 'polkadot-v0.9.8'184version = '3.0.0'185186[dependencies.pallet-timestamp]187default-features = false188git = 'https://github.com/paritytech/substrate.git'189branch = 'polkadot-v0.9.8'190version = '3.0.0'191192[dependencies.pallet-transaction-payment]193default-features = false194git = 'https://github.com/paritytech/substrate.git'195branch = 'polkadot-v0.9.8'196version = '3.0.0'197198[dependencies.pallet-transaction-payment-rpc-runtime-api]199default-features = false200git = 'https://github.com/paritytech/substrate.git'201branch = 'polkadot-v0.9.8'202version = '3.0.0'203204[dependencies.pallet-treasury]205default-features = false206git = 'https://github.com/paritytech/substrate.git'207branch = 'polkadot-v0.9.8'208version = '3.0.0'209210[dependencies.pallet-vesting]211default-features = false212git = 'https://github.com/paritytech/substrate.git'213branch = 'polkadot-v0.9.8'214version = '3.0.0'215216[dependencies.sp-arithmetic]217default-features = false218git = 'https://github.com/paritytech/substrate.git'219branch = 'polkadot-v0.9.8'220version = '3.0.0'221222[dependencies.sp-api]223default-features = false224git = 'https://github.com/paritytech/substrate.git'225branch = 'polkadot-v0.9.8'226version = '3.0.0'227228[dependencies.sp-block-builder]229default-features = false230git = 'https://github.com/paritytech/substrate.git'231branch = 'polkadot-v0.9.8'232version = '3.0.0'233234[dependencies.sp-core]235default-features = false236git = 'https://github.com/paritytech/substrate.git'237branch = 'polkadot-v0.9.8'238version = '3.0.0'239240[dependencies.sp-consensus-aura]241default-features = false242git = 'https://github.com/paritytech/substrate.git'243branch = 'polkadot-v0.9.8'244version = '0.9.0'245246[dependencies.sp-inherents]247default-features = false248git = 'https://github.com/paritytech/substrate.git'249branch = 'polkadot-v0.9.8'250version = '3.0.0'251252[dependencies.sp-io]253default-features = false254git = 'https://github.com/paritytech/substrate.git'255branch = 'polkadot-v0.9.8'256version = '3.0.0'257258[dependencies.sp-offchain]259default-features = false260git = 'https://github.com/paritytech/substrate.git'261branch = 'polkadot-v0.9.8'262version = '3.0.0'263264[dependencies.sp-runtime]265default-features = false266git = 'https://github.com/paritytech/substrate.git'267branch = 'polkadot-v0.9.8'268version = '3.0.0'269270[dependencies.sp-session]271default-features = false272git = 'https://github.com/paritytech/substrate.git'273branch = 'polkadot-v0.9.8'274version = '3.0.0'275276[dependencies.sp-std]277default-features = false278git = 'https://github.com/paritytech/substrate.git'279branch = 'polkadot-v0.9.8'280version = '3.0.0'281282[dependencies.sp-transaction-pool]283default-features = false284git = 'https://github.com/paritytech/substrate.git'285branch = 'polkadot-v0.9.8'286version = '3.0.0'287288[dependencies.sp-version]289default-features = false290git = 'https://github.com/paritytech/substrate.git'291branch = 'polkadot-v0.9.8'292version = '3.0.0'293294[dependencies.smallvec]295version = '1.4.1'296297################################################################################298# Cumulus dependencies299300[dependencies.parachain-info]301default-features = false302git = 'https://github.com/paritytech/cumulus.git'303branch = 'polkadot-v0.9.8'304version = '0.1.0'305306[dependencies.cumulus-pallet-aura-ext]307git = 'https://github.com/paritytech/cumulus.git'308branch = 'polkadot-v0.9.8'309default-features = false310311[dependencies.cumulus-pallet-parachain-system]312git = 'https://github.com/paritytech/cumulus.git'313branch = 'polkadot-v0.9.8'314default-features = false315316[dependencies.cumulus-primitives-core]317git = 'https://github.com/paritytech/cumulus.git'318branch = 'polkadot-v0.9.8'319default-features = false320321[dependencies.cumulus-pallet-xcm]322git = 'https://github.com/paritytech/cumulus.git'323branch = 'polkadot-v0.9.8'324default-features = false325326[dependencies.cumulus-pallet-dmp-queue]327git = 'https://github.com/paritytech/cumulus.git'328branch = 'polkadot-v0.9.8'329default-features = false330331[dependencies.cumulus-pallet-xcmp-queue]332git = 'https://github.com/paritytech/cumulus.git'333branch = 'polkadot-v0.9.8'334default-features = false335336[dependencies.cumulus-primitives-utility]337git = 'https://github.com/paritytech/cumulus.git'338branch = 'polkadot-v0.9.8'339default-features = false340341[dependencies.cumulus-primitives-timestamp]342git = 'https://github.com/paritytech/cumulus.git'343branch = 'polkadot-v0.9.8'344default-features = false345346################################################################################347# Polkadot dependencies348349[dependencies.polkadot-parachain]350git = 'https://github.com/paritytech/polkadot'351branch = 'release-v0.9.8'352default-features = false353354[dependencies.xcm]355git = 'https://github.com/paritytech/polkadot'356branch = 'release-v0.9.8'357default-features = false358359[dependencies.xcm-builder]360git = 'https://github.com/paritytech/polkadot'361branch = 'release-v0.9.8'362default-features = false363364[dependencies.xcm-executor]365git = 'https://github.com/paritytech/polkadot'366branch = 'release-v0.9.8'367default-features = false368369[dependencies.pallet-xcm]370git = 'https://github.com/paritytech/polkadot'371branch = 'release-v0.9.8'372default-features = false373374375376################################################################################377# local dependencies378379[dependencies]380pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }381pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }382nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }383pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }384# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }385pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }386pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }387evm-coder-substrate = { default-features = false, path = "../crates/evm-coder-substrate" }388389pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }390pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }391fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }392393################################################################################394# Build Dependencies395396[build-dependencies]397substrate-wasm-builder = '4.0.0'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-balances/runtime-benchmarks',27 'pallet-timestamp/runtime-benchmarks',28 'pallet-nft/runtime-benchmarks',29 'pallet-inflation/runtime-benchmarks',30 'sp-runtime/runtime-benchmarks',31]32std = [33 'codec/std',34 'cumulus-pallet-aura-ext/std',35 'cumulus-pallet-parachain-system/std',36 'cumulus-pallet-xcm/std',37 'cumulus-pallet-xcmp-queue/std',38 'cumulus-primitives-core/std',39 'cumulus-primitives-utility/std',40 'frame-executive/std',41 'frame-support/std',42 'frame-system/std',43 'frame-system-rpc-runtime-api/std',44 'pallet-aura/std',45 'pallet-balances/std',46 # 'pallet-contracts/std',47 # 'pallet-contracts-primitives/std',48 # 'pallet-contracts-rpc-runtime-api/std',49 # 'pallet-contract-helpers/std',50 'pallet-randomness-collective-flip/std',51 'pallet-sudo/std',52 'pallet-timestamp/std',53 'pallet-transaction-payment/std',54 'pallet-transaction-payment-rpc-runtime-api/std',55 'pallet-treasury/std',56 'pallet-vesting/std',57 'pallet-evm/std',58 'pallet-evm-contract-helpers/std',59 'pallet-evm-transaction-payment/std',60 'pallet-evm-coder-substrate/std',61 'pallet-ethereum/std',62 'fp-rpc/std',63 'parachain-info/std',64 'serde',65 'pallet-inflation/std',66 'pallet-nft/std',67 'pallet-scheduler/std',68 'pallet-nft-charge-transaction/std',69 'pallet-nft-transaction-payment/std',70 'nft-data-structs/std',71 'sp-api/std',72 'sp-block-builder/std',73 "sp-consensus-aura/std",74 'sp-core/std',75 'sp-inherents/std',76 'sp-io/std',77 'sp-offchain/std',78 'sp-runtime/std',79 'sp-session/std',80 'sp-std/std',81 'sp-transaction-pool/std',82 'sp-version/std',83 'xcm/std',84 'xcm-builder/std',85 'xcm-executor/std',86]8788################################################################################89# Substrate Dependencies9091[dependencies.codec]92default-features = false93features = ['derive']94package = 'parity-scale-codec'95version = '2.0.0'9697[dependencies.frame-benchmarking]98default-features = false99git = 'https://github.com/paritytech/substrate.git'100optional = true101branch = 'polkadot-v0.9.8'102version = '3.0.0'103104[dependencies.frame-executive]105default-features = false106git = 'https://github.com/paritytech/substrate.git'107branch = 'polkadot-v0.9.8'108version = '3.0.0'109110[dependencies.frame-support]111default-features = false112git = 'https://github.com/paritytech/substrate.git'113branch = 'polkadot-v0.9.8'114version = '3.0.0'115116[dependencies.frame-system]117default-features = false118git = 'https://github.com/paritytech/substrate.git'119branch = 'polkadot-v0.9.8'120version = '3.0.0'121122[dependencies.frame-system-benchmarking]123default-features = false124git = 'https://github.com/paritytech/substrate.git'125optional = true126branch = 'polkadot-v0.9.8'127version = '3.0.0'128129[dependencies.frame-system-rpc-runtime-api]130default-features = false131git = 'https://github.com/paritytech/substrate.git'132branch = 'polkadot-v0.9.8'133version = '3.0.0'134135[dependencies.hex-literal]136optional = true137version = '0.3.1'138139[dependencies.serde]140default-features = false141features = ['derive']142optional = true143version = '1.0.119'144145[dependencies.pallet-aura]146default-features = false147git = 'https://github.com/paritytech/substrate.git'148branch = 'polkadot-v0.9.8'149version = '3.0.0'150151[dependencies.pallet-balances]152default-features = false153git = 'https://github.com/paritytech/substrate.git'154branch = 'polkadot-v0.9.8'155version = '3.0.0'156157# Contracts specific packages158# [dependencies.pallet-contracts]159# git = 'https://github.com/paritytech/substrate.git'160# default-features = false161# branch = 'polkadot-v0.9.8'162# version = '3.0.0'163164# [dependencies.pallet-contracts-primitives]165# git = 'https://github.com/paritytech/substrate.git'166# default-features = false167# branch = 'polkadot-v0.9.8'168# version = '3.0.0'169170# [dependencies.pallet-contracts-rpc-runtime-api]171# git = 'https://github.com/paritytech/substrate.git'172# default-features = false173# branch = 'polkadot-v0.9.8'174# version = '3.0.0'175176[dependencies.pallet-randomness-collective-flip]177default-features = false178git = 'https://github.com/paritytech/substrate.git'179branch = 'polkadot-v0.9.8'180version = '3.0.0'181182[dependencies.pallet-sudo]183default-features = false184git = 'https://github.com/paritytech/substrate.git'185branch = 'polkadot-v0.9.8'186version = '3.0.0'187188[dependencies.pallet-timestamp]189default-features = false190git = 'https://github.com/paritytech/substrate.git'191branch = 'polkadot-v0.9.8'192version = '3.0.0'193194[dependencies.pallet-transaction-payment]195default-features = false196git = 'https://github.com/paritytech/substrate.git'197branch = 'polkadot-v0.9.8'198version = '3.0.0'199200[dependencies.pallet-transaction-payment-rpc-runtime-api]201default-features = false202git = 'https://github.com/paritytech/substrate.git'203branch = 'polkadot-v0.9.8'204version = '3.0.0'205206[dependencies.pallet-treasury]207default-features = false208git = 'https://github.com/paritytech/substrate.git'209branch = 'polkadot-v0.9.8'210version = '3.0.0'211212[dependencies.pallet-vesting]213default-features = false214git = 'https://github.com/paritytech/substrate.git'215branch = 'polkadot-v0.9.8'216version = '3.0.0'217218[dependencies.sp-arithmetic]219default-features = false220git = 'https://github.com/paritytech/substrate.git'221branch = 'polkadot-v0.9.8'222version = '3.0.0'223224[dependencies.sp-api]225default-features = false226git = 'https://github.com/paritytech/substrate.git'227branch = 'polkadot-v0.9.8'228version = '3.0.0'229230[dependencies.sp-block-builder]231default-features = false232git = 'https://github.com/paritytech/substrate.git'233branch = 'polkadot-v0.9.8'234version = '3.0.0'235236[dependencies.sp-core]237default-features = false238git = 'https://github.com/paritytech/substrate.git'239branch = 'polkadot-v0.9.8'240version = '3.0.0'241242[dependencies.sp-consensus-aura]243default-features = false244git = 'https://github.com/paritytech/substrate.git'245branch = 'polkadot-v0.9.8'246version = '0.9.0'247248[dependencies.sp-inherents]249default-features = false250git = 'https://github.com/paritytech/substrate.git'251branch = 'polkadot-v0.9.8'252version = '3.0.0'253254[dependencies.sp-io]255default-features = false256git = 'https://github.com/paritytech/substrate.git'257branch = 'polkadot-v0.9.8'258version = '3.0.0'259260[dependencies.sp-offchain]261default-features = false262git = 'https://github.com/paritytech/substrate.git'263branch = 'polkadot-v0.9.8'264version = '3.0.0'265266[dependencies.sp-runtime]267default-features = false268git = 'https://github.com/paritytech/substrate.git'269branch = 'polkadot-v0.9.8'270version = '3.0.0'271272[dependencies.sp-session]273default-features = false274git = 'https://github.com/paritytech/substrate.git'275branch = 'polkadot-v0.9.8'276version = '3.0.0'277278[dependencies.sp-std]279default-features = false280git = 'https://github.com/paritytech/substrate.git'281branch = 'polkadot-v0.9.8'282version = '3.0.0'283284[dependencies.sp-transaction-pool]285default-features = false286git = 'https://github.com/paritytech/substrate.git'287branch = 'polkadot-v0.9.8'288version = '3.0.0'289290[dependencies.sp-version]291default-features = false292git = 'https://github.com/paritytech/substrate.git'293branch = 'polkadot-v0.9.8'294version = '3.0.0'295296[dependencies.smallvec]297version = '1.4.1'298299################################################################################300# Cumulus dependencies301302[dependencies.parachain-info]303default-features = false304git = 'https://github.com/paritytech/cumulus.git'305branch = 'polkadot-v0.9.8'306version = '0.1.0'307308[dependencies.cumulus-pallet-aura-ext]309git = 'https://github.com/paritytech/cumulus.git'310branch = 'polkadot-v0.9.8'311default-features = false312313[dependencies.cumulus-pallet-parachain-system]314git = 'https://github.com/paritytech/cumulus.git'315branch = 'polkadot-v0.9.8'316default-features = false317318[dependencies.cumulus-primitives-core]319git = 'https://github.com/paritytech/cumulus.git'320branch = 'polkadot-v0.9.8'321default-features = false322323[dependencies.cumulus-pallet-xcm]324git = 'https://github.com/paritytech/cumulus.git'325branch = 'polkadot-v0.9.8'326default-features = false327328[dependencies.cumulus-pallet-dmp-queue]329git = 'https://github.com/paritytech/cumulus.git'330branch = 'polkadot-v0.9.8'331default-features = false332333[dependencies.cumulus-pallet-xcmp-queue]334git = 'https://github.com/paritytech/cumulus.git'335branch = 'polkadot-v0.9.8'336default-features = false337338[dependencies.cumulus-primitives-utility]339git = 'https://github.com/paritytech/cumulus.git'340branch = 'polkadot-v0.9.8'341default-features = false342343[dependencies.cumulus-primitives-timestamp]344git = 'https://github.com/paritytech/cumulus.git'345branch = 'polkadot-v0.9.8'346default-features = false347348################################################################################349# Polkadot dependencies350351[dependencies.polkadot-parachain]352git = 'https://github.com/paritytech/polkadot'353branch = 'release-v0.9.8'354default-features = false355356[dependencies.xcm]357git = 'https://github.com/paritytech/polkadot'358branch = 'release-v0.9.8'359default-features = false360361[dependencies.xcm-builder]362git = 'https://github.com/paritytech/polkadot'363branch = 'release-v0.9.8'364default-features = false365366[dependencies.xcm-executor]367git = 'https://github.com/paritytech/polkadot'368branch = 'release-v0.9.8'369default-features = false370371[dependencies.pallet-xcm]372git = 'https://github.com/paritytech/polkadot'373branch = 'release-v0.9.8'374default-features = false375376377################################################################################378# local dependencies379380[dependencies]381pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }382pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }383nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }384pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }385# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }386pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }387pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }388pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }389pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }390pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }391392pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }393pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }394fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }395396################################################################################397# Build Dependencies398399[build-dependencies]400substrate-wasm-builder = '4.0.0'