From 919e00ce312ea78ca48f11e06323804613374375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rok=20=C4=8Cerni=C4=8D?= Date: Wed, 5 Jun 2024 15:51:37 +0200 Subject: [PATCH] chore: polish --- Cargo.toml | 5 +---- cli/polka-storage-provider/Cargo.toml | 2 +- primitives/cli/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a48b71e62..ecbe8c7e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,6 @@ panic = 'abort' # Use abort on panic to reduce binary size substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0" } substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0" } -async-trait = { version = "0.1.18" } chrono = "0.4.38" clap = { version = "4.5.3" } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } @@ -99,9 +98,7 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot- # Polkadot pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0", default-features = false } -polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0", features = [ - "rococo-native", -] } +polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0", features = ["rococo-native"] } polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0", default-features = false } polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0" } polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.11.0", default-features = false } diff --git a/cli/polka-storage-provider/Cargo.toml b/cli/polka-storage-provider/Cargo.toml index 578330849..a5f649755 100644 --- a/cli/polka-storage-provider/Cargo.toml +++ b/cli/polka-storage-provider/Cargo.toml @@ -14,11 +14,11 @@ cli-primitives = { path = "../../primitives/cli" } jsonrpsee = { workspace = true, features = ["server"] } serde = { workspace = true } subxt = { workspace = true } +subxt-signer = { workspace = true } tokio = { workspace = true, features = ["full"] } tracing = { workspace = true } tracing-subscriber = { workspace = true } url = { workspace = true } -subxt-signer = { workspace = true } [lints] workspace = true diff --git a/primitives/cli/Cargo.toml b/primitives/cli/Cargo.toml index 4fa1fbaad..25834b5d4 100644 --- a/primitives/cli/Cargo.toml +++ b/primitives/cli/Cargo.toml @@ -8,8 +8,8 @@ repository.workspace = true version = "0.1.0" [dependencies] -thiserror = { workspace = true } subxt = { workspace = true } +thiserror = { workspace = true } [lints] workspace = true