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

difftreelog

source

node/cli/Cargo.toml7.3 KiBsourcehistory
1[build-dependencies]2substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }34################################################################################5# Package67[package]8authors = ['Unique Network <support@uniquenetwork.io>']9build = 'build.rs'10description = 'Unique Node'11edition = '2021'12homepage = 'https://unique.network'13license = 'GPLv3'14name = 'unique-node'15repository = 'https://github.com/UniqueNetwork/unique-chain'16version.workspace = true1718[[bin]]19name = 'unique-collator'20path = "src/main.rs"2122[package.metadata.docs.rs]23targets = ['x86_64-unknown-linux-gnu']2425[dependencies]26clap = "4.1"27codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.2" }28cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }29cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }30cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }31cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }32cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }33cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }34cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }35cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }36cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }37cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }38frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }39frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }40futures = '0.3.17'41log = '0.4.17'42opal-runtime = { path = "../../runtime/opal", optional = true }43pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }44polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }45polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }46polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }47quartz-runtime = { path = "../../runtime/quartz", optional = true }48sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }49sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }50sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }51sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }52sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }53sc-consensus-manual-seal = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }54sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }55sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }56sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }57sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }58sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }59sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }60sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }61serde = { features = ['derive'], version = "1.0" }62serde_json = "1.0"63sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }64sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }65sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }66sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }67sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }68sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }69sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }70sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }71sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }72sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }73sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }74sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }75substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }76substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }77tokio = { version = "1.24", features = ["time"] }78try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }79unique-runtime = { path = "../../runtime/unique", optional = true }80up-common.path = "../../primitives/common"81up-data-structs = { path = "../../primitives/data-structs", default-features = false }8283fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }84fc-db = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }85fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }86fc-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }87fc-rpc-core = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }88fp-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.37" }8990app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }91rmrk-rpc.path = "../../primitives/rmrk-rpc"92uc-rpc = { default-features = false, path = "../../client/rpc" }93unique-rpc = { default-features = false, path = "../rpc" }94up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }95up-rpc.path = "../../primitives/rpc"9697[features]98default = ["opal-runtime"]99pov-estimate = [100	'opal-runtime/pov-estimate',101	'quartz-runtime?/pov-estimate',102	'uc-rpc/pov-estimate',103	'unique-rpc/pov-estimate',104	'unique-runtime?/pov-estimate',105]106runtime-benchmarks = [107	'opal-runtime/runtime-benchmarks',108	'polkadot-cli/runtime-benchmarks',109	'polkadot-service/runtime-benchmarks',110	'quartz-runtime?/runtime-benchmarks',111	'sc-service/runtime-benchmarks',112	'unique-runtime?/runtime-benchmarks',113]114sapphire-runtime = ['quartz-runtime', 'quartz-runtime/become-sapphire']115try-runtime = [116	'opal-runtime?/try-runtime',117	'quartz-runtime?/try-runtime',118	'try-runtime-cli/try-runtime',119	'unique-runtime?/try-runtime',120]