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', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }33frame-executive = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }34frame-support = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }35frame-system = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }36frame-system-benchmarking = { default-features = false, optional = true, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }37frame-system-rpc-runtime-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }38pallet-aura = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }39pallet-balances = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }40pallet-contracts = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }41pallet-contracts-primitives = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }42pallet-contracts-rpc-runtime-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }43pallet-evm = { default-features = false, version = "4.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions" }44pallet-ethereum = { default-features = false, version = "2.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions" }45pallet-grandpa = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }46pallet-randomness-collective-flip = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }47pallet-sudo = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }48pallet-timestamp = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }49pallet-transaction-payment = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }50pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }51pallet-treasury = { default-features = false, version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }52pallet-vesting = { default-features = false, version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }53fp-rpc = { default-features = false, version = "2.0.0", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions" }54sp-arithmetic = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }55sp-api = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }56sp-block-builder = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }57sp-consensus-aura = { default-features = false, version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }58sp-core = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }59sp-inherents = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }60sp-offchain = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }61sp-runtime = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }62sp-session = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }63sp-std = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }64sp-transaction-pool = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }65sp-version = { default-features = false, version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }66smallvec = "1.4.1"6768[features]69default = ['std']70runtime-benchmarks = [71 'hex-literal',72 'frame-benchmarking',73 'frame-support/runtime-benchmarks',74 'frame-system-benchmarking',75 'frame-system/runtime-benchmarks',76 'pallet-balances/runtime-benchmarks',77 'pallet-timestamp/runtime-benchmarks',78 'pallet-nft/runtime-benchmarks',79 'pallet-inflation/runtime-benchmarks',80 'sp-runtime/runtime-benchmarks',81]82std = [83 'codec/std',84 'serde',85 'frame-executive/std',86 'frame-support/std',87 'frame-system/std',88 'frame-system-rpc-runtime-api/std',89 'pallet-aura/std',90 'pallet-balances/std',91 'pallet-contracts/std',92 'pallet-contracts-primitives/std',93 'pallet-contracts-rpc-runtime-api/std',94 'pallet-grandpa/std',95 'pallet-randomness-collective-flip/std',96 'pallet-sudo/std',97 'pallet-timestamp/std',98 'pallet-transaction-payment/std',99 'pallet-transaction-payment-rpc-runtime-api/std',100 'pallet-treasury/std',101 'pallet-vesting/std',102 'pallet-evm/std',103 'pallet-ethereum/std',104105 'pallet-inflation/std',106 'pallet-nft/std',107 'fp-rpc/std',108 'sp-api/std',109 'sp-block-builder/std',110 'sp-consensus-aura/std',111 'sp-core/std',112 'sp-inherents/std',113 'sp-offchain/std',114 'sp-runtime/std',115 'sp-session/std',116 'sp-std/std',117 'sp-transaction-pool/std',118 'sp-version/std',119120]