From 6147ac9418ec68e822f8459e9ef5e962504dd01d Mon Sep 17 00:00:00 2001 From: Tadeo hepperle Date: Thu, 15 Feb 2024 17:51:30 +0100 Subject: [PATCH] fix unused deps --- Cargo.lock | 2 -- subxt/Cargo.toml | 4 ---- 2 files changed, 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 343d08e3cd..df17609ab4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4502,9 +4502,7 @@ version = "0.34.0" dependencies = [ "assert_matches", "async-trait", - "base58", "bitvec", - "blake2", "derivative", "either", "frame-metadata 16.0.0", diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index f9ebd92afd..f289d13b01 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -88,10 +88,6 @@ impl-serde = { workspace = true } primitive-types = { workspace = true, features = ["codec", "scale-info", "serde"] } sp-core-hashing = { workspace = true } -# For ss58 encoding AccountId32 to serialize them properly: -base58 = { workspace = true } -blake2 = { workspace = true } - # Included if the "jsonrpsee" feature is enabled. jsonrpsee = { workspace = true, optional = true, features = ["jsonrpsee-types"] }