Remove unused deps

This commit is contained in:
James Wilson
2025-12-15 17:32:18 +00:00
parent 853732550b
commit 82590b10d1
2 changed files with 0 additions and 13 deletions
Generated
-4
View File
@@ -5613,9 +5613,7 @@ version = "0.50.0"
dependencies = [
"assert_matches",
"async-trait",
"base58",
"bitvec",
"blake2",
"derive-where",
"either",
"frame-decode",
@@ -5650,11 +5648,9 @@ dependencies = [
"subxt-utils-accountid32",
"thiserror 2.0.12",
"tokio",
"tokio-util",
"tower",
"tracing",
"tracing-subscriber",
"url",
"wasm-bindgen-futures",
"web-time",
]
-9
View File
@@ -35,7 +35,6 @@ docs = [
native = [
"subxt-lightclient?/native",
"subxt-rpcs/native",
"tokio-util",
"tokio?/sync",
"sp-crypto-hashing/std",
]
@@ -83,8 +82,6 @@ runtime-wasm-path = ["subxt-macro/runtime-wasm-path"]
[dependencies]
async-trait = { workspace = true }
base58 = { workspace = true }
blake2 = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] }
derive-where = { workspace = true }
scale-info = { workspace = true, features = ["default"] }
@@ -121,12 +118,6 @@ subxt-lightclient = { workspace = true, optional = true, default-features = fals
subxt-rpcs = { workspace = true }
subxt-utils-accountid32 = { workspace = true }
# For parsing urls to disallow insecure schemes
url = { workspace = true }
# Included if "native" feature is enabled
tokio-util = { workspace = true, features = ["compat"], optional = true }
# Included if the reconnecting rpc client feature is enabled
# Only the `tokio/sync` is used in the reconnecting rpc client
# and that compiles both for native and web.