1[package]2authors = ['UseTech Professional <https://usetech.com/blockchain>']3edition = '2018'4homepage = 'https://substrate.io'5license = 'All Rights Reserved'6name = 'nft-runtime'7repository = 'https://github.com/usetech-llc/nft_parachain/'8version = '3.0.0'910[package.metadata.docs.rs]11targets = ['x86_64-unknown-linux-gnu']1213[build-dependencies]14substrate-wasm-builder = '4.0.0'151617[dependencies.codec]18default-features = false19features = ['derive']20package = 'parity-scale-codec'21version = '2.0.0'2223[dependencies]24hex-literal = { optional = true, version = '0.3.1' }25serde = { features = ['derive'], optional = true, version = '1.0.119' }262728pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }29pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }303132frame-benchmarking = { default-features = false, optional = true, version = '3.0.0' }33frame-executive = { default-features = false, version = '3.0.0' }34frame-support = { default-features = false, version = '3.0.0' }35frame-system = { default-features = false, version = '3.0.0' }36frame-system-benchmarking = { default-features = false, optional = true, version = '3.0.0' }37frame-system-rpc-runtime-api = { default-features = false, version = '3.0.0' }38pallet-aura = { default-features = false, version = '3.0.0' }39pallet-balances = { default-features = false, version = '3.0.0' }40pallet-contracts = { default-features = false, version = '3.0.0' }41pallet-contracts-primitives = { default-features = false, version = '3.0.0' }42pallet-contracts-rpc-runtime-api = { default-features = false, version = '3.0.0' }43pallet-grandpa = { default-features = false, version = '3.0.0' }44pallet-randomness-collective-flip = { default-features = false, version = '3.0.0' }45pallet-sudo = { default-features = false, version = '3.0.0' }46pallet-timestamp = { default-features = false, version = '3.0.0' }47pallet-transaction-payment = { default-features = false, version = '3.0.0' }48pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = '3.0.0' }49pallet-treasury = { default-features = false, version = "3.0.0" }50pallet-vesting = { default-features = false, version = "3.0.0" }51sp-arithmetic = { default-features = false, version = '3.0.0' }52sp-api = { default-features = false, version = '3.0.0' }53sp-block-builder = { default-features = false, version = '3.0.0' }54sp-consensus-aura = { default-features = false, version = '0.9.0' }55sp-core = { default-features = false, version = '3.0.0' }56sp-inherents = { default-features = false, version = '3.0.0' }57sp-offchain = { default-features = false, version = '3.0.0' }58sp-runtime = { default-features = false, version = '3.0.0' }59sp-session = { default-features = false, version = '3.0.0' }60sp-std = { default-features = false, version = '3.0.0' }61sp-transaction-pool = { default-features = false, version = '3.0.0' }62sp-version = { default-features = false, version = '3.0.0' }63smallvec = "1.4.1"6465[features]66default = ['std']67runtime-benchmarks = [68 'hex-literal',69 'frame-benchmarking',70 'frame-support/runtime-benchmarks',71 'frame-system-benchmarking',72 'frame-system/runtime-benchmarks',73 'pallet-balances/runtime-benchmarks',74 'pallet-timestamp/runtime-benchmarks',75 'pallet-nft/runtime-benchmarks',76 'pallet-inflation/runtime-benchmarks',77 'sp-runtime/runtime-benchmarks',78]79std = [80 'codec/std',81 'serde',82 'frame-executive/std',83 'frame-support/std',84 'frame-system/std',85 'frame-system-rpc-runtime-api/std',86 'pallet-aura/std',87 'pallet-balances/std',88 'pallet-contracts/std',89 'pallet-contracts-primitives/std',90 'pallet-contracts-rpc-runtime-api/std',91 'pallet-grandpa/std',92 'pallet-randomness-collective-flip/std',93 'pallet-sudo/std',94 'pallet-timestamp/std',95 'pallet-transaction-payment/std',96 'pallet-transaction-payment-rpc-runtime-api/std',97 'pallet-treasury/std',98 'pallet-vesting/std',99100 'pallet-inflation/std',101 'pallet-nft/std',102 'sp-api/std',103 'sp-block-builder/std',104 'sp-consensus-aura/std',105 'sp-core/std',106 'sp-inherents/std',107 'sp-offchain/std',108 'sp-runtime/std',109 'sp-session/std',110 'sp-std/std',111 'sp-transaction-pool/std',112 'sp-version/std',113114]