1[build-dependencies]2substrate-build-script-utils = '3.0.0'34[[bin]]5name = 'nft'67[package]8authors = ['UseTech Professional <https://usetech.com/blockchain>']9build = 'build.rs'10description = 'Substrate node nft'11edition = '2018'12homepage = 'https://usetech.com/blockchain'13license = 'All Rights Reserved'14name = 'nft'15repository = 'https://github.com/usetech-llc/nft_private/'16version = '3.0.0'1718[package.metadata.docs.rs]19targets = ['x86_64-unknown-linux-gnu']2021[dependencies]22futures = '0.3.4'23log = '0.4.8'24flexi_logger = "0.15.7"25parking_lot = '0.10.0'26structopt = '0.3.8'27jsonrpc-core = '15.0.0'282930nft-runtime = { path = '../runtime', version = '3.0.0' }31frame-benchmarking = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }32frame-benchmarking-cli = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }33pallet-transaction-payment-rpc = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }34sc-basic-authorship = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }35sc-cli = { version = '0.9.0', features = ['wasmtime'], git = "https://github.com/paritytech/substrate.git", branch = "frontier" }36sc-client-api = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }37sc-consensus = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }38sc-consensus-aura = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }39sc-executor = { version = '0.9.0', features = ['wasmtime'], git = "https://github.com/paritytech/substrate.git", branch = "frontier" }40sc-finality-grandpa = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }4142sc-keystore = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }43sc-rpc = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }44sc-rpc-api = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }45sc-service = { version = '0.9.0', features = ['wasmtime'], git = "https://github.com/paritytech/substrate.git", branch = "frontier" }46sc-transaction-pool = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }47sp-api = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }48sp-block-builder = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }49sp-blockchain = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }50sp-consensus = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }51sp-consensus-aura = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }52sp-core = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }53sp-finality-grandpa = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }54sp-inherents = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }55sp-runtime = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }56sp-transaction-pool = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }57substrate-frame-rpc-system = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }58sc-network = { version = '0.9.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }59pallet-contracts-rpc = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }60sc-telemetry = { version = '3.0.0', git = "https://github.com/paritytech/substrate.git", branch = "frontier" }6162serde = { version = "1.0.102", features = ["derive"] }63serde_json = "1.0.41"6465[features]66default = []67runtime-benchmarks = ['nft-runtime/runtime-benchmarks']