git.delta.rocks / unique-network / refs/commits / eb5b53586bb9

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' }31nft-data-structs = { default-features = false, path="../primitives" }32frame-benchmarking = '3.0.0'33frame-benchmarking-cli = '3.0.0'34pallet-transaction-payment-rpc = '3.0.0'35sc-basic-authorship = '0.9.0'36sc-cli = { features = ['wasmtime'], version = '0.9.0' }37sc-client-api = '3.0.0'38sc-consensus = '0.9.0'39sc-consensus-aura = '0.9.0'40sc-executor = { features = ['wasmtime'], version = '0.9.0' }41sc-finality-grandpa = '0.9.0'4243sc-keystore = '3.0.0'44sc-rpc = '3.0.0'45sc-rpc-api = '0.9.0'46sc-service = { features = ['wasmtime'], version = '0.9.0' }47sc-transaction-pool = '3.0.0'48sp-api = '3.0.0'49sp-block-builder = '3.0.0'50sp-blockchain = '3.0.0'51sp-consensus = '0.9.0'52sp-consensus-aura = '0.9.0'53sp-core = '3.0.0'54sp-finality-grandpa = '3.0.0'55sp-inherents = '3.0.0'56sp-runtime = '3.0.0'57sp-transaction-pool = '3.0.0'58substrate-frame-rpc-system = '3.0.0'59sc-network = '0.9.0'60pallet-contracts-rpc = '3.0.0'61sc-telemetry = '3.0.0'6263serde = { version = "1.0.102", features = ["derive"] }64serde_json = "1.0.41"6566[features]67default = []68runtime-benchmarks = ['nft-runtime/runtime-benchmarks']