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-evm-migration/runtime-benchmarks',27 'pallet-balances/runtime-benchmarks',28 'pallet-timestamp/runtime-benchmarks',29 'pallet-nft/runtime-benchmarks',30 'pallet-inflation/runtime-benchmarks',31 'sp-runtime/runtime-benchmarks',32]33std = [34 'codec/std',35 'max-encoded-len/std',36 'cumulus-pallet-aura-ext/std',37 'cumulus-pallet-parachain-system/std',38 'cumulus-pallet-xcm/std',39 'cumulus-pallet-xcmp-queue/std',40 'cumulus-primitives-core/std',41 'cumulus-primitives-utility/std',42 'frame-executive/std',43 'frame-support/std',44 'frame-system/std',45 'frame-system-rpc-runtime-api/std',46 'pallet-aura/std',47 'pallet-balances/std',48 49 50 51 52 'pallet-randomness-collective-flip/std',53 'pallet-sudo/std',54 'pallet-timestamp/std',55 'pallet-transaction-payment/std',56 'pallet-transaction-payment-rpc-runtime-api/std',57 'pallet-treasury/std',58 'pallet-vesting/std',59 'pallet-evm/std',60 'pallet-evm-migration/std',61 'pallet-evm-contract-helpers/std',62 'pallet-evm-transaction-payment/std',63 'pallet-evm-coder-substrate/std',64 'pallet-ethereum/std',65 'fp-rpc/std',66 'parachain-info/std',67 'serde',68 'pallet-inflation/std',69 'pallet-nft/std',70 'pallet-scheduler/std',71 'pallet-nft-charge-transaction/std',72 'pallet-nft-transaction-payment/std',73 'nft-data-structs/std',74 'sp-api/std',75 'sp-block-builder/std',76 "sp-consensus-aura/std",77 'sp-core/std',78 'sp-inherents/std',79 'sp-io/std',80 'sp-offchain/std',81 'sp-runtime/std',82 'sp-session/std',83 'sp-std/std',84 'sp-transaction-pool/std',85 'sp-version/std',86 'xcm/std',87 'xcm-builder/std',88 'xcm-executor/std',89]90limit-testing = [91 'pallet-nft/limit-testing',92 'nft-data-structs/limit-testing',93]9495969798[dependencies.codec]99default-features = false100features = ['derive']101package = 'parity-scale-codec'102version = '2.0.0'103104[dependencies.frame-benchmarking]105default-features = false106git = 'https://github.com/paritytech/substrate.git'107optional = true108branch = 'polkadot-v0.9.8'109version = '3.0.0'110111[dependencies.frame-executive]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114branch = 'polkadot-v0.9.8'115version = '3.0.0'116117[dependencies.frame-support]118default-features = false119git = 'https://github.com/paritytech/substrate.git'120branch = 'polkadot-v0.9.8'121version = '3.0.0'122123[dependencies.frame-system]124default-features = false125git = 'https://github.com/paritytech/substrate.git'126branch = 'polkadot-v0.9.8'127version = '3.0.0'128129[dependencies.frame-system-benchmarking]130default-features = false131git = 'https://github.com/paritytech/substrate.git'132optional = true133branch = 'polkadot-v0.9.8'134version = '3.0.0'135136[dependencies.frame-system-rpc-runtime-api]137default-features = false138git = 'https://github.com/paritytech/substrate.git'139branch = 'polkadot-v0.9.8'140version = '3.0.0'141142[dependencies.hex-literal]143optional = true144version = '0.3.1'145146[dependencies.serde]147default-features = false148features = ['derive']149optional = true150version = '1.0.119'151152[dependencies.pallet-aura]153default-features = false154git = 'https://github.com/paritytech/substrate.git'155branch = 'polkadot-v0.9.8'156version = '3.0.0'157158[dependencies.pallet-balances]159default-features = false160git = 'https://github.com/paritytech/substrate.git'161branch = 'polkadot-v0.9.8'162version = '3.0.0'163164165166167168169170171172173174175176177178179180181182183[dependencies.pallet-randomness-collective-flip]184default-features = false185git = 'https://github.com/paritytech/substrate.git'186branch = 'polkadot-v0.9.8'187version = '3.0.0'188189[dependencies.pallet-sudo]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.8'193version = '3.0.0'194195[dependencies.pallet-timestamp]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.8'199version = '3.0.0'200201[dependencies.pallet-transaction-payment]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.8'205version = '3.0.0'206207[dependencies.pallet-transaction-payment-rpc-runtime-api]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.8'211version = '3.0.0'212213[dependencies.pallet-treasury]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.8'217version = '3.0.0'218219[dependencies.pallet-vesting]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.8'223version = '3.0.0'224225[dependencies.sp-arithmetic]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.8'229version = '3.0.0'230231[dependencies.sp-api]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.8'235version = '3.0.0'236237[dependencies.sp-block-builder]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.8'241version = '3.0.0'242243[dependencies.sp-core]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.8'247version = '3.0.0'248249[dependencies.sp-consensus-aura]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.8'253version = '0.9.0'254255[dependencies.sp-inherents]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.8'259version = '3.0.0'260261[dependencies.sp-io]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.8'265version = '3.0.0'266267[dependencies.sp-offchain]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.8'271version = '3.0.0'272273[dependencies.sp-runtime]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.8'277version = '3.0.0'278279[dependencies.sp-session]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.8'283version = '3.0.0'284285[dependencies.sp-std]286default-features = false287git = 'https://github.com/paritytech/substrate.git'288branch = 'polkadot-v0.9.8'289version = '3.0.0'290291[dependencies.sp-transaction-pool]292default-features = false293git = 'https://github.com/paritytech/substrate.git'294branch = 'polkadot-v0.9.8'295version = '3.0.0'296297[dependencies.sp-version]298default-features = false299git = 'https://github.com/paritytech/substrate.git'300branch = 'polkadot-v0.9.8'301version = '3.0.0'302303[dependencies.smallvec]304version = '1.4.1'305306307308309[dependencies.parachain-info]310default-features = false311git = 'https://github.com/paritytech/cumulus.git'312branch = 'polkadot-v0.9.8'313version = '0.1.0'314315[dependencies.cumulus-pallet-aura-ext]316git = 'https://github.com/paritytech/cumulus.git'317branch = 'polkadot-v0.9.8'318default-features = false319320[dependencies.cumulus-pallet-parachain-system]321git = 'https://github.com/paritytech/cumulus.git'322branch = 'polkadot-v0.9.8'323default-features = false324325[dependencies.cumulus-primitives-core]326git = 'https://github.com/paritytech/cumulus.git'327branch = 'polkadot-v0.9.8'328default-features = false329330[dependencies.cumulus-pallet-xcm]331git = 'https://github.com/paritytech/cumulus.git'332branch = 'polkadot-v0.9.8'333default-features = false334335[dependencies.cumulus-pallet-dmp-queue]336git = 'https://github.com/paritytech/cumulus.git'337branch = 'polkadot-v0.9.8'338default-features = false339340[dependencies.cumulus-pallet-xcmp-queue]341git = 'https://github.com/paritytech/cumulus.git'342branch = 'polkadot-v0.9.8'343default-features = false344345[dependencies.cumulus-primitives-utility]346git = 'https://github.com/paritytech/cumulus.git'347branch = 'polkadot-v0.9.8'348default-features = false349350[dependencies.cumulus-primitives-timestamp]351git = 'https://github.com/paritytech/cumulus.git'352branch = 'polkadot-v0.9.8'353default-features = false354355356357358[dependencies.polkadot-parachain]359git = 'https://github.com/paritytech/polkadot'360branch = 'release-v0.9.8'361default-features = false362363[dependencies.xcm]364git = 'https://github.com/paritytech/polkadot'365branch = 'release-v0.9.8'366default-features = false367368[dependencies.xcm-builder]369git = 'https://github.com/paritytech/polkadot'370branch = 'release-v0.9.8'371default-features = false372373[dependencies.xcm-executor]374git = 'https://github.com/paritytech/polkadot'375branch = 'release-v0.9.8'376default-features = false377378[dependencies.pallet-xcm]379git = 'https://github.com/paritytech/polkadot'380branch = 'release-v0.9.8'381default-features = false382383384385386387[dependencies]388max-encoded-len = { default-features = false, features = ['derive'], version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }389derivative = "2.2.0"390pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }391pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }392nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }393pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }394395pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }396pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }397pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }398pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }399pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }400pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }401402pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }403pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }404fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }405406407408409[build-dependencies]410substrate-wasm-builder = '4.0.0'