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 = [ dependencies = [
"assert_matches", "assert_matches",
"async-trait", "async-trait",
"base58",
"bitvec", "bitvec",
"blake2",
"derive-where", "derive-where",
"either", "either",
"frame-decode", "frame-decode",
@@ -5650,11 +5648,9 @@ dependencies = [
"subxt-utils-accountid32", "subxt-utils-accountid32",
"thiserror 2.0.12", "thiserror 2.0.12",
"tokio", "tokio",
"tokio-util",
"tower", "tower",
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
"url",
"wasm-bindgen-futures", "wasm-bindgen-futures",
"web-time", "web-time",
] ]
-9
View File
@@ -35,7 +35,6 @@ docs = [
native = [ native = [
"subxt-lightclient?/native", "subxt-lightclient?/native",
"subxt-rpcs/native", "subxt-rpcs/native",
"tokio-util",
"tokio?/sync", "tokio?/sync",
"sp-crypto-hashing/std", "sp-crypto-hashing/std",
] ]
@@ -83,8 +82,6 @@ runtime-wasm-path = ["subxt-macro/runtime-wasm-path"]
[dependencies] [dependencies]
async-trait = { workspace = true } async-trait = { workspace = true }
base58 = { workspace = true }
blake2 = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] } codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] }
derive-where = { workspace = true } derive-where = { workspace = true }
scale-info = { workspace = true, features = ["default"] } scale-info = { workspace = true, features = ["default"] }
@@ -121,12 +118,6 @@ subxt-lightclient = { workspace = true, optional = true, default-features = fals
subxt-rpcs = { workspace = true } subxt-rpcs = { workspace = true }
subxt-utils-accountid32 = { 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 # Included if the reconnecting rpc client feature is enabled
# Only the `tokio/sync` is used in the reconnecting rpc client # Only the `tokio/sync` is used in the reconnecting rpc client
# and that compiles both for native and web. # and that compiles both for native and web.