1234[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 'max-encoded-len/std',35 'cumulus-pallet-aura-ext/std',36 'cumulus-pallet-parachain-system/std',37 'cumulus-pallet-xcm/std',38 'cumulus-pallet-xcmp-queue/std',39 'cumulus-primitives-core/std',40 'cumulus-primitives-utility/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 48 49 50 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-evm-contract-helpers/std',60 'pallet-evm-transaction-payment/std',61 'pallet-evm-coder-substrate/std',62 'pallet-ethereum/std',63 'fp-rpc/std',64 'parachain-info/std',65 'serde',66 'pallet-inflation/std',67 'pallet-nft/std',68 'pallet-scheduler/std',69 'pallet-nft-charge-transaction/std',70 'pallet-nft-transaction-payment/std',71 'nft-data-structs/std',72 'sp-api/std',73 'sp-block-builder/std',74 "sp-consensus-aura/std",75 'sp-core/std',76 'sp-inherents/std',77 'sp-io/std',78 'sp-offchain/std',79 'sp-runtime/std',80 'sp-session/std',81 'sp-std/std',82 'sp-transaction-pool/std',83 'sp-version/std',84 'xcm/std',85 'xcm-builder/std',86 'xcm-executor/std',87]8889909192[dependencies.codec]93default-features = false94features = ['derive']95package = 'parity-scale-codec'96version = '2.0.0'9798[dependencies.frame-benchmarking]99default-features = false100git = 'https://github.com/paritytech/substrate.git'101optional = true102branch = 'polkadot-v0.9.8'103version = '3.0.0'104105[dependencies.frame-executive]106default-features = false107git = 'https://github.com/paritytech/substrate.git'108branch = 'polkadot-v0.9.8'109version = '3.0.0'110111[dependencies.frame-support]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114branch = 'polkadot-v0.9.8'115version = '3.0.0'116117[dependencies.frame-system]118default-features = false119git = 'https://github.com/paritytech/substrate.git'120branch = 'polkadot-v0.9.8'121version = '3.0.0'122123[dependencies.frame-system-benchmarking]124default-features = false125git = 'https://github.com/paritytech/substrate.git'126optional = true127branch = 'polkadot-v0.9.8'128version = '3.0.0'129130[dependencies.frame-system-rpc-runtime-api]131default-features = false132git = 'https://github.com/paritytech/substrate.git'133branch = 'polkadot-v0.9.8'134version = '3.0.0'135136[dependencies.hex-literal]137optional = true138version = '0.3.1'139140[dependencies.serde]141default-features = false142features = ['derive']143optional = true144version = '1.0.119'145146[dependencies.pallet-aura]147default-features = false148git = 'https://github.com/paritytech/substrate.git'149branch = 'polkadot-v0.9.8'150version = '3.0.0'151152[dependencies.pallet-balances]153default-features = false154git = 'https://github.com/paritytech/substrate.git'155branch = 'polkadot-v0.9.8'156version = '3.0.0'157158159160161162163164165166167168169170171172173174175176177[dependencies.pallet-randomness-collective-flip]178default-features = false179git = 'https://github.com/paritytech/substrate.git'180branch = 'polkadot-v0.9.8'181version = '3.0.0'182183[dependencies.pallet-sudo]184default-features = false185git = 'https://github.com/paritytech/substrate.git'186branch = 'polkadot-v0.9.8'187version = '3.0.0'188189[dependencies.pallet-timestamp]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.8'193version = '3.0.0'194195[dependencies.pallet-transaction-payment]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.8'199version = '3.0.0'200201[dependencies.pallet-transaction-payment-rpc-runtime-api]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.8'205version = '3.0.0'206207[dependencies.pallet-treasury]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.8'211version = '3.0.0'212213[dependencies.pallet-vesting]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.8'217version = '3.0.0'218219[dependencies.sp-arithmetic]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.8'223version = '3.0.0'224225[dependencies.sp-api]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.8'229version = '3.0.0'230231[dependencies.sp-block-builder]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.8'235version = '3.0.0'236237[dependencies.sp-core]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.8'241version = '3.0.0'242243[dependencies.sp-consensus-aura]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.8'247version = '0.9.0'248249[dependencies.sp-inherents]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.8'253version = '3.0.0'254255[dependencies.sp-io]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.8'259version = '3.0.0'260261[dependencies.sp-offchain]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.8'265version = '3.0.0'266267[dependencies.sp-runtime]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.8'271version = '3.0.0'272273[dependencies.sp-session]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.8'277version = '3.0.0'278279[dependencies.sp-std]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.8'283version = '3.0.0'284285[dependencies.sp-transaction-pool]286default-features = false287git = 'https://github.com/paritytech/substrate.git'288branch = 'polkadot-v0.9.8'289version = '3.0.0'290291[dependencies.sp-version]292default-features = false293git = 'https://github.com/paritytech/substrate.git'294branch = 'polkadot-v0.9.8'295version = '3.0.0'296297[dependencies.smallvec]298version = '1.4.1'299300301302303[dependencies.parachain-info]304default-features = false305git = 'https://github.com/paritytech/cumulus.git'306branch = 'polkadot-v0.9.8'307version = '0.1.0'308309[dependencies.cumulus-pallet-aura-ext]310git = 'https://github.com/paritytech/cumulus.git'311branch = 'polkadot-v0.9.8'312default-features = false313314[dependencies.cumulus-pallet-parachain-system]315git = 'https://github.com/paritytech/cumulus.git'316branch = 'polkadot-v0.9.8'317default-features = false318319[dependencies.cumulus-primitives-core]320git = 'https://github.com/paritytech/cumulus.git'321branch = 'polkadot-v0.9.8'322default-features = false323324[dependencies.cumulus-pallet-xcm]325git = 'https://github.com/paritytech/cumulus.git'326branch = 'polkadot-v0.9.8'327default-features = false328329[dependencies.cumulus-pallet-dmp-queue]330git = 'https://github.com/paritytech/cumulus.git'331branch = 'polkadot-v0.9.8'332default-features = false333334[dependencies.cumulus-pallet-xcmp-queue]335git = 'https://github.com/paritytech/cumulus.git'336branch = 'polkadot-v0.9.8'337default-features = false338339[dependencies.cumulus-primitives-utility]340git = 'https://github.com/paritytech/cumulus.git'341branch = 'polkadot-v0.9.8'342default-features = false343344[dependencies.cumulus-primitives-timestamp]345git = 'https://github.com/paritytech/cumulus.git'346branch = 'polkadot-v0.9.8'347default-features = false348349350351352[dependencies.polkadot-parachain]353git = 'https://github.com/paritytech/polkadot'354branch = 'release-v0.9.8'355default-features = false356357[dependencies.xcm]358git = 'https://github.com/paritytech/polkadot'359branch = 'release-v0.9.8'360default-features = false361362[dependencies.xcm-builder]363git = 'https://github.com/paritytech/polkadot'364branch = 'release-v0.9.8'365default-features = false366367[dependencies.xcm-executor]368git = 'https://github.com/paritytech/polkadot'369branch = 'release-v0.9.8'370default-features = false371372[dependencies.pallet-xcm]373git = 'https://github.com/paritytech/polkadot'374branch = 'release-v0.9.8'375default-features = false376377378379380381[dependencies]382max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }383derivative = "2.2.0"384pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }385pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }386nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }387pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }388389pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }390pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }391pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }392pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }393pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }394395pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }396pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }397fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }398399400401402[build-dependencies]403substrate-wasm-builder = '4.0.0'