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

difftreelog

source

node/cli/Cargo.toml9.4 KiBsourcehistory
1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.36"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.36"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.36"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.36"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.36"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.36"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.36"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.36"4445[dependencies.sc-cli]46git = "https://github.com/paritytech/substrate"47branch = "polkadot-v0.9.36"4849[dependencies.sc-client-api]50git = "https://github.com/paritytech/substrate"51branch = "polkadot-v0.9.36"5253[dependencies.sc-consensus]54git = "https://github.com/paritytech/substrate"55branch = "polkadot-v0.9.36"5657[dependencies.sc-consensus-aura]58git = "https://github.com/paritytech/substrate"59branch = "polkadot-v0.9.36"6061[dependencies.sc-executor]62git = "https://github.com/paritytech/substrate"63branch = "polkadot-v0.9.36"6465[dependencies.sc-finality-grandpa]66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.36"6869[dependencies.sc-keystore]70git = "https://github.com/paritytech/substrate"71branch = "polkadot-v0.9.36"7273[dependencies.sc-rpc]74git = "https://github.com/paritytech/substrate"75branch = "polkadot-v0.9.36"7677[dependencies.sc-rpc-api]78git = "https://github.com/paritytech/substrate"79branch = "polkadot-v0.9.36"8081[dependencies.sc-service]82git = "https://github.com/paritytech/substrate"83branch = "polkadot-v0.9.36"8485[dependencies.sc-telemetry]86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.36"8889[dependencies.sc-transaction-pool]90git = "https://github.com/paritytech/substrate"91branch = "polkadot-v0.9.36"9293[dependencies.sc-tracing]94git = "https://github.com/paritytech/substrate"95branch = "polkadot-v0.9.36"9697[dependencies.sc-sysinfo]98git = "https://github.com/paritytech/substrate"99branch = "polkadot-v0.9.36"100101[dependencies.sp-block-builder]102git = "https://github.com/paritytech/substrate"103branch = "polkadot-v0.9.36"104105[dependencies.sp-api]106git = "https://github.com/paritytech/substrate"107branch = "polkadot-v0.9.36"108109[dependencies.sp-blockchain]110git = "https://github.com/paritytech/substrate"111branch = "polkadot-v0.9.36"112113[dependencies.sp-consensus]114git = "https://github.com/paritytech/substrate"115branch = "polkadot-v0.9.36"116117[dependencies.sp-consensus-aura]118git = "https://github.com/paritytech/substrate"119branch = "polkadot-v0.9.36"120121[dependencies.sp-core]122git = "https://github.com/paritytech/substrate"123branch = "polkadot-v0.9.36"124125[dependencies.sp-finality-grandpa]126git = "https://github.com/paritytech/substrate"127branch = "polkadot-v0.9.36"128129[dependencies.sp-inherents]130git = "https://github.com/paritytech/substrate"131branch = "polkadot-v0.9.36"132133[dependencies.sp-keystore]134git = "https://github.com/paritytech/substrate"135branch = "polkadot-v0.9.36"136137[dependencies.sp-offchain]138git = "https://github.com/paritytech/substrate"139branch = "polkadot-v0.9.36"140141[dependencies.sp-runtime]142git = "https://github.com/paritytech/substrate"143branch = "polkadot-v0.9.36"144145[dependencies.sp-session]146git = "https://github.com/paritytech/substrate"147branch = "polkadot-v0.9.36"148149[dependencies.sp-timestamp]150git = "https://github.com/paritytech/substrate"151branch = "polkadot-v0.9.36"152153[dependencies.sp-transaction-pool]154git = "https://github.com/paritytech/substrate"155branch = "polkadot-v0.9.36"156157[dependencies.sp-trie]158git = "https://github.com/paritytech/substrate"159branch = "polkadot-v0.9.36"160161[dependencies.substrate-frame-rpc-system]162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.36"164165[dependencies.sc-network]166git = "https://github.com/paritytech/substrate"167branch = "polkadot-v0.9.36"168169[dependencies.serde]170features = ['derive']171version = '1.0.130'172173[dependencies.serde_json]174version = '1.0.68'175176[dependencies.sc-consensus-manual-seal]177git = "https://github.com/paritytech/substrate"178branch = "polkadot-v0.9.36"179180################################################################################181# Cumulus dependencies182183[dependencies.cumulus-client-consensus-aura]184git = "https://github.com/paritytech/cumulus"185branch = "polkadot-v0.9.36"186187[dependencies.cumulus-client-consensus-common]188git = "https://github.com/paritytech/cumulus"189branch = "polkadot-v0.9.36"190191[dependencies.cumulus-client-collator]192git = "https://github.com/paritytech/cumulus"193branch = "polkadot-v0.9.36"194195[dependencies.cumulus-client-cli]196git = "https://github.com/paritytech/cumulus"197branch = "polkadot-v0.9.36"198199[dependencies.cumulus-client-network]200git = "https://github.com/paritytech/cumulus"201branch = "polkadot-v0.9.36"202203[dependencies.cumulus-primitives-core]204git = "https://github.com/paritytech/cumulus"205branch = "polkadot-v0.9.36"206207[dependencies.cumulus-primitives-parachain-inherent]208git = "https://github.com/paritytech/cumulus"209branch = "polkadot-v0.9.36"210211[dependencies.cumulus-client-service]212git = "https://github.com/paritytech/cumulus"213branch = "polkadot-v0.9.36"214215[dependencies.cumulus-relay-chain-interface]216git = "https://github.com/paritytech/cumulus"217branch = "polkadot-v0.9.36"218219[dependencies.cumulus-relay-chain-inprocess-interface]220git = "https://github.com/paritytech/cumulus"221branch = "polkadot-v0.9.36"222223[dependencies.cumulus-relay-chain-minimal-node]224git = "https://github.com/paritytech/cumulus"225branch = "polkadot-v0.9.36"226227################################################################################228# Polkadot dependencies229[dependencies.polkadot-primitives]230git = "https://github.com/paritytech/polkadot"231branch = "release-v0.9.36"232233[dependencies.polkadot-service]234git = "https://github.com/paritytech/polkadot"235branch = "release-v0.9.36"236237[dependencies.polkadot-cli]238git = "https://github.com/paritytech/polkadot"239branch = "release-v0.9.36"240241[dependencies.polkadot-test-service]242git = "https://github.com/paritytech/polkadot"243branch = "release-v0.9.36"244245[dependencies.polkadot-parachain]246git = "https://github.com/paritytech/polkadot"247branch = "release-v0.9.36"248249250################################################################################251# Local dependencies252253[dependencies.up-common]254path = "../../primitives/common"255256[dependencies.unique-runtime]257path = '../../runtime/unique'258optional = true259260[dependencies.quartz-runtime]261path = '../../runtime/quartz'262optional = true263264[dependencies.opal-runtime]265path = '../../runtime/opal'266optional = true267268[dependencies.up-data-structs]269path = "../../primitives/data-structs"270default-features = false271272[dependencies.up-rpc]273path = "../../primitives/rpc"274275[dependencies.pallet-transaction-payment-rpc-runtime-api]276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.36"278279################################################################################280# Package281282[package]283authors = ['Unique Network <support@uniquenetwork.io>']284build = 'build.rs'285description = 'Unique Node'286edition = '2021'287homepage = 'https://unique.network'288license = 'GPLv3'289name = 'unique-node'290repository = 'https://github.com/UniqueNetwork/unique-chain'291version.workspace = true292293[[bin]]294name = 'unique-collator'295path = "src/main.rs"296297[package.metadata.docs.rs]298targets = ['x86_64-unknown-linux-gnu']299300[dependencies]301futures = '0.3.17'302log = '0.4.16'303flexi_logger = "0.24.2"304parking_lot = '0.12.1'305clap = "4.0.9"306jsonrpsee = { version = "0.16.2", features = ["server", "macros"] }307tokio = { version = "1.19.2", features = ["time"] }308309fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }310fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }311fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }312fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }313fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }314fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }315pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }316317unique-rpc = { default-features = false, path = "../rpc" }318app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }319rmrk-rpc = { path = "../../primitives/rmrk-rpc" }320321[features]322default = ["opal-runtime"]323runtime-benchmarks = [324    'unique-runtime?/runtime-benchmarks',325    'quartz-runtime?/runtime-benchmarks',326    'opal-runtime/runtime-benchmarks',327    'polkadot-service/runtime-benchmarks',328    'polkadot-cli/runtime-benchmarks',329    'sc-service/runtime-benchmarks',330]331try-runtime = [332    'unique-runtime?/try-runtime',333    'quartz-runtime?/try-runtime',334    'opal-runtime?/try-runtime',335    'try-runtime-cli/try-runtime',336]337sapphire-runtime = ['opal-runtime', 'opal-runtime/become-sapphire']