git.delta.rocks / unique-network / refs/commits / 5c98ac6773a2

difftreelog

source

node/cli/Cargo.toml8.9 KiBsourcehistory
1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = 'https://github.com/paritytech/substrate.git'6branch = 'polkadot-v0.9.9'7version = '3.0.0'89################################################################################10# Substrate Dependecies1112[dependencies.codec]13default-features = false14features = ['derive']15package = 'parity-scale-codec'16version = '2.0.0'1718[dependencies.frame-benchmarking]19git = 'https://github.com/paritytech/substrate.git'20branch = 'polkadot-v0.9.9'21version = '4.0.0-dev'2223[dependencies.frame-benchmarking-cli]24git = 'https://github.com/paritytech/substrate.git'25branch = 'polkadot-v0.9.9'26version = '4.0.0-dev'2728[dependencies.pallet-transaction-payment-rpc]29git = 'https://github.com/paritytech/substrate.git'30branch = 'polkadot-v0.9.9'31version = '4.0.0-dev'3233[dependencies.substrate-prometheus-endpoint]34git = 'https://github.com/paritytech/substrate.git'35branch = 'polkadot-v0.9.9'36version = '0.9.0'3738[dependencies.sc-basic-authorship]39git = 'https://github.com/paritytech/substrate.git'40branch = 'polkadot-v0.9.9'41version = '0.10.0-dev'4243[dependencies.sc-chain-spec]44git = 'https://github.com/paritytech/substrate.git'45branch = 'polkadot-v0.9.9'46version = '4.0.0-dev'4748[dependencies.sc-cli]49features = ['wasmtime']50git = 'https://github.com/paritytech/substrate.git'51branch = 'polkadot-v0.9.9'52version = '0.10.0-dev'5354[dependencies.sc-client-api]55git = 'https://github.com/paritytech/substrate.git'56branch = 'polkadot-v0.9.9'57version = '4.0.0-dev'5859[dependencies.sc-consensus]60git = 'https://github.com/paritytech/substrate.git'61branch = 'polkadot-v0.9.9'62version = '0.10.0-dev'6364[dependencies.sc-consensus-aura]65git = 'https://github.com/paritytech/substrate.git'66branch = 'polkadot-v0.9.9'67version = '0.10.0-dev'6869[dependencies.sc-executor]70features = ['wasmtime']71git = 'https://github.com/paritytech/substrate.git'72branch = 'polkadot-v0.9.9'73version = '0.10.0-dev'7475[dependencies.sc-finality-grandpa]76git = 'https://github.com/paritytech/substrate.git'77branch = 'polkadot-v0.9.9'78version = '0.10.0-dev'7980[dependencies.sc-keystore]81git = 'https://github.com/paritytech/substrate.git'82branch = 'polkadot-v0.9.9'83version = '4.0.0-dev'8485[dependencies.sc-rpc]86git = 'https://github.com/paritytech/substrate.git'87branch = 'polkadot-v0.9.9'88version = '4.0.0-dev'8990[dependencies.sc-rpc-api]91git = 'https://github.com/paritytech/substrate.git'92branch = 'polkadot-v0.9.9'93version = '0.10.0-dev'9495[dependencies.sc-service]96features = ['wasmtime']97git = 'https://github.com/paritytech/substrate.git'98branch = 'polkadot-v0.9.9'99version = '0.10.0-dev'100101[dependencies.sc-telemetry]102git = 'https://github.com/paritytech/substrate.git'103branch = 'polkadot-v0.9.9'104version = '4.0.0-dev'105106[dependencies.sc-transaction-pool]107git = 'https://github.com/paritytech/substrate.git'108branch = 'polkadot-v0.9.9'109version = '4.0.0-dev'110111[dependencies.sc-tracing]112git = 'https://github.com/paritytech/substrate.git'113branch = 'polkadot-v0.9.9'114version = '4.0.0-dev'115116[dependencies.sp-block-builder]117git = 'https://github.com/paritytech/substrate.git'118branch = 'polkadot-v0.9.9'119version = '4.0.0-dev'120121[dependencies.sp-api]122git = 'https://github.com/paritytech/substrate.git'123branch = 'polkadot-v0.9.9'124version = '4.0.0-dev'125126[dependencies.sp-blockchain]127git = 'https://github.com/paritytech/substrate.git'128branch = 'polkadot-v0.9.9'129version = '4.0.0-dev'130131[dependencies.sp-consensus]132git = 'https://github.com/paritytech/substrate.git'133branch = 'polkadot-v0.9.9'134version = '0.10.0-dev'135136[dependencies.sp-consensus-aura]137git = 'https://github.com/paritytech/substrate.git'138branch = 'polkadot-v0.9.9'139version = '0.10.0-dev'140141[dependencies.sp-core]142git = 'https://github.com/paritytech/substrate.git'143branch = 'polkadot-v0.9.9'144version = '4.0.0-dev'145146[dependencies.sp-finality-grandpa]147git = 'https://github.com/paritytech/substrate.git'148branch = 'polkadot-v0.9.9'149version = '4.0.0-dev'150151[dependencies.sp-inherents]152git = 'https://github.com/paritytech/substrate.git'153branch = 'polkadot-v0.9.9'154version = '4.0.0-dev'155156[dependencies.sp-keystore]157git = 'https://github.com/paritytech/substrate.git'158branch = 'polkadot-v0.9.9'159version = '0.10.0-dev'160161[dependencies.sp-offchain]162git = 'https://github.com/paritytech/substrate.git'163branch = 'polkadot-v0.9.9'164version = '4.0.0-dev'165166[dependencies.sp-runtime]167git = 'https://github.com/paritytech/substrate.git'168branch = 'polkadot-v0.9.9'169version = '4.0.0-dev'170171[dependencies.sp-session]172git = 'https://github.com/paritytech/substrate.git'173branch = 'polkadot-v0.9.9'174version = '4.0.0-dev'175176[dependencies.sp-timestamp]177git = 'https://github.com/paritytech/substrate.git'178branch = 'polkadot-v0.9.9'179version = '4.0.0-dev'180181[dependencies.sp-transaction-pool]182git = 'https://github.com/paritytech/substrate.git'183branch = 'polkadot-v0.9.9'184version = '4.0.0-dev'185186[dependencies.sp-trie]187git = 'https://github.com/paritytech/substrate.git'188branch = 'polkadot-v0.9.9'189version = '4.0.0-dev'190191[dependencies.substrate-frame-rpc-system]192git = 'https://github.com/paritytech/substrate.git'193branch = 'polkadot-v0.9.9'194version = '4.0.0-dev'195196[dependencies.sc-network]197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.9'199version = '0.10.0-dev'200201[dependencies.serde]202features = ['derive']203version = '1.0.119'204205[dependencies.serde_json]206version = '1.0.41'207208209################################################################################210# Cumulus dependencies211212[dependencies.cumulus-client-consensus-aura]213git = 'https://github.com/paritytech/cumulus.git'214branch = 'polkadot-v0.9.9'215216[dependencies.cumulus-client-consensus-common]217git = 'https://github.com/paritytech/cumulus.git'218branch = 'polkadot-v0.9.9'219220[dependencies.cumulus-client-collator]221git = 'https://github.com/paritytech/cumulus.git'222branch = 'polkadot-v0.9.9'223224[dependencies.cumulus-client-cli]225git = 'https://github.com/paritytech/cumulus.git'226branch = 'polkadot-v0.9.9'227228[dependencies.cumulus-client-network]229git = 'https://github.com/paritytech/cumulus.git'230branch = 'polkadot-v0.9.9'231232[dependencies.cumulus-primitives-core]233git = 'https://github.com/paritytech/cumulus.git'234branch = 'polkadot-v0.9.9'235236[dependencies.cumulus-primitives-parachain-inherent]237git = 'https://github.com/paritytech/cumulus.git'238branch = 'polkadot-v0.9.9'239240[dependencies.cumulus-client-service]241git = 'https://github.com/paritytech/cumulus.git'242branch = 'polkadot-v0.9.9'243244245################################################################################246# Polkadot dependencies247[dependencies.polkadot-primitives]248git = "https://github.com/paritytech/polkadot"249branch = 'release-v0.9.9'250251[dependencies.polkadot-service]252git = "https://github.com/paritytech/polkadot"253branch = 'release-v0.9.9'254255[dependencies.polkadot-cli]256git = "https://github.com/paritytech/polkadot"257branch = 'release-v0.9.9'258259[dependencies.polkadot-test-service]260git = "https://github.com/paritytech/polkadot"261branch = 'release-v0.9.9'262263[dependencies.polkadot-parachain]264git = "https://github.com/paritytech/polkadot"265branch = 'release-v0.9.9'266267268################################################################################269# Local dependencies270271[dependencies.nft-runtime]272path = '../../runtime'273version = '3.0.0'274275[dependencies.nft-data-structs]276path = "../../primitives/nft"277default-features = false278279################################################################################280# Package 281282[package]283authors = ['Unique Network <support@uniquenetwork.io>']284build = 'build.rs'285description = 'Substrate node nft'286edition = '2018'287homepage = 'https://unique.network'288license = 'All Rights Reserved'289name = 'nft'290repository = 'https://github.com/usetech-llc/nft_private/'291version = '3.0.0'292293[[bin]]294name = 'nft'295296[package.metadata.docs.rs]297targets = ['x86_64-unknown-linux-gnu']298299[dependencies]300futures = '0.3.4'301log = '0.4.8'302flexi_logger = "0.15.7"303parking_lot = '0.10.0'304structopt = '0.3.8'305jsonrpc-core = '15.0.0'306jsonrpc-pubsub = "15.0.0"307308fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }309fc-consensus = { version = "2.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }310fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }311fc-rpc = { version = "2.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }312fc-db = { version = "2.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }313fp-rpc = { version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }314pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }315316nft-rpc = { path = "../rpc" }317318[features]319default = []320runtime-benchmarks = [321    'nft-runtime/runtime-benchmarks',322    'polkadot-service/runtime-benchmarks',323]