git.delta.rocks / unique-network / refs/commits / 570af721ce82

difftreelog

source

node/cli/Cargo.toml9.5 KiBsourcehistory
1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.33"78################################################################################9# Substrate Dependecies1011[dependencies.codec]12default-features = false13features = ['derive']14package = 'parity-scale-codec'15version = '3.1.2'1617[dependencies.frame-benchmarking]18git = "https://github.com/paritytech/substrate"19branch = "polkadot-v0.9.33"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.33"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.33"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.33"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.33"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.33"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.33"4445[dependencies.sc-cli]46features = ['wasmtime']47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.33"4950[dependencies.sc-client-api]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.33"5354[dependencies.sc-consensus]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.33"5758[dependencies.sc-consensus-aura]59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.33"6162[dependencies.sc-executor]63features = ['wasmtime']64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.33"6667[dependencies.sc-finality-grandpa]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.33"7071[dependencies.sc-keystore]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.33"7475[dependencies.sc-rpc]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.33"7879[dependencies.sc-rpc-api]80git = "https://github.com/paritytech/substrate"81branch = "polkadot-v0.9.33"8283[dependencies.sc-service]84features = ['wasmtime']85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.33"8788[dependencies.sc-telemetry]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.33"9192[dependencies.sc-transaction-pool]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.33"9596[dependencies.sc-tracing]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.33"99100[dependencies.sc-sysinfo]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.33"103104[dependencies.sp-block-builder]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.33"107108[dependencies.sp-api]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.33"111112[dependencies.sp-blockchain]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.33"115116[dependencies.sp-consensus]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.33"119120[dependencies.sp-consensus-aura]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.33"123124[dependencies.sp-core]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.33"127128[dependencies.sp-finality-grandpa]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.33"131132[dependencies.sp-inherents]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.33"135136[dependencies.sp-keystore]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.33"139140[dependencies.sp-offchain]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.33"143144[dependencies.sp-runtime]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.33"147148[dependencies.sp-session]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.33"151152[dependencies.sp-timestamp]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.33"155156[dependencies.sp-transaction-pool]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.33"159160[dependencies.sp-trie]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.33"163164[dependencies.substrate-frame-rpc-system]165git = "https://github.com/paritytech/substrate"166branch = "polkadot-v0.9.33"167168[dependencies.sc-network]169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.33"171172[dependencies.serde]173features = ['derive']174version = '1.0.130'175176[dependencies.serde_json]177version = '1.0.68'178179[dependencies.sc-consensus-manual-seal]180git = "https://github.com/paritytech/substrate"181branch = "polkadot-v0.9.33"182183################################################################################184# Cumulus dependencies185186[dependencies.cumulus-client-consensus-aura]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.33"189190[dependencies.cumulus-client-consensus-common]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.33"193194[dependencies.cumulus-client-collator]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.33"197198[dependencies.cumulus-client-cli]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.33"201202[dependencies.cumulus-client-network]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.33"205206[dependencies.cumulus-primitives-core]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.33"209210[dependencies.cumulus-primitives-parachain-inherent]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.33"213214[dependencies.cumulus-client-service]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.33"217218[dependencies.cumulus-relay-chain-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.33"221222[dependencies.cumulus-relay-chain-inprocess-interface]223git = "https://github.com/paritytech/cumulus"224branch = "polkadot-v0.9.33"225226[dependencies.cumulus-relay-chain-minimal-node]227git = "https://github.com/paritytech/cumulus"228branch = "polkadot-v0.9.33"229230################################################################################231# Polkadot dependencies232[dependencies.polkadot-primitives]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.33"235236[dependencies.polkadot-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.33"239240[dependencies.polkadot-cli]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.33"243244[dependencies.polkadot-test-service]245git = "https://github.com/paritytech/polkadot"246branch = "release-v0.9.33"247248[dependencies.polkadot-parachain]249git = "https://github.com/paritytech/polkadot"250branch = "release-v0.9.33"251252253################################################################################254# Local dependencies255256[dependencies.up-common]257path = "../../primitives/common"258259[dependencies.unique-runtime]260path = '../../runtime/unique'261optional = true262263[dependencies.quartz-runtime]264path = '../../runtime/quartz'265optional = true266267[dependencies.opal-runtime]268path = '../../runtime/opal'269optional = true270271[dependencies.up-data-structs]272path = "../../primitives/data-structs"273default-features = false274275[dependencies.up-rpc]276path = "../../primitives/rpc"277278[dependencies.pallet-transaction-payment-rpc-runtime-api]279git = "https://github.com/paritytech/substrate"280branch = "polkadot-v0.9.33"281282################################################################################283# Package284285[package]286authors = ['Unique Network <support@uniquenetwork.io>']287build = 'build.rs'288description = 'Unique Node'289edition = '2021'290homepage = 'https://unique.network'291license = 'GPLv3'292name = 'unique-node'293repository = 'https://github.com/UniqueNetwork/unique-chain'294version = "0.9.33"295296[[bin]]297name = 'unique-collator'298path = "src/main.rs"299300[package.metadata.docs.rs]301targets = ['x86_64-unknown-linux-gnu']302303[dependencies]304futures = '0.3.17'305log = '0.4.16'306flexi_logger = "0.22.5"307parking_lot = '0.12.1'308clap = "4.0.9"309jsonrpsee = { version = "0.15.1", features = ["server", "macros"] }310tokio = { version = "1.19.2", features = ["time"] }311312fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }313fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }314fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }315fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }316fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }317fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }318pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }319320unique-rpc = { default-features = false, path = "../rpc" }321app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }322rmrk-rpc = { path = "../../primitives/rmrk-rpc" }323324[features]325default = ["opal-runtime"]326runtime-benchmarks = [327    'unique-runtime?/runtime-benchmarks',328    'quartz-runtime?/runtime-benchmarks',329    'opal-runtime/runtime-benchmarks',330    'polkadot-service/runtime-benchmarks',331    'polkadot-cli/runtime-benchmarks',332    'sc-service/runtime-benchmarks',333]334try-runtime = [335    'unique-runtime?/try-runtime',336    'quartz-runtime?/try-runtime',337    'opal-runtime?/try-runtime',338    'try-runtime-cli/try-runtime',339]340sapphire-runtime = [341    'opal-runtime',342    'opal-runtime/become-sapphire',343]