git.delta.rocks / unique-network / refs/commits / 07649f272b8b

difftreelog

source

node/Cargo.toml1.7 KiBsourcehistory
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'2829# Substrate dependencies30nft-runtime = { path = '../runtime', version = '3.0.0' }31frame-benchmarking = '3.0.0'32frame-benchmarking-cli = '3.0.0'33pallet-transaction-payment-rpc = '3.0.0'34sc-basic-authorship = '0.9.0'35sc-cli = { features = ['wasmtime'], version = '0.9.0' }36sc-client-api = '3.0.0'37sc-consensus = '0.9.0'38sc-consensus-aura = '0.9.0'39sc-executor = { features = ['wasmtime'], version = '0.9.0' }40sc-finality-grandpa = '0.9.0'4142sc-keystore = '3.0.0'43sc-rpc = '3.0.0'44sc-rpc-api = '0.9.0'45sc-service = { features = ['wasmtime'], version = '0.9.0' }46sc-transaction-pool = '3.0.0'47sp-api = '3.0.0'48sp-block-builder = '3.0.0'49sp-blockchain = '3.0.0'50sp-consensus = '0.9.0'51sp-consensus-aura = '0.9.0'52sp-core = '3.0.0'53sp-finality-grandpa = '3.0.0'54sp-inherents = '3.0.0'55sp-runtime = '3.0.0'56sp-transaction-pool = '3.0.0'57substrate-frame-rpc-system = '3.0.0'58sc-network = '0.9.0'59pallet-contracts-rpc = '3.0.0'60sc-telemetry = '3.0.0'6162serde = { version = "1.0.102", features = ["derive"] }63serde_json = "1.0.41"6465[features]66default = []67runtime-benchmarks = ['nft-runtime/runtime-benchmarks']