From e557b44acb4f0ae459629f6b4364c1d5582fbb87 Mon Sep 17 00:00:00 2001 From: b-yap <2826165+b-yap@users.noreply.github.com> Date: Tue, 8 Oct 2024 23:22:41 +0800 Subject: [PATCH] remove unnecessary dependencies --- Cargo.lock | 4 ---- clients/wallet/Cargo.toml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10dace292..08b65999e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13001,11 +13001,7 @@ dependencies = [ "spacewalk-primitives", "thiserror", "tokio", - "tokio-metrics", - "tokio-stream", "tracing", - "tracing-futures", - "tracing-subscriber 0.2.25", ] [[package]] diff --git a/clients/wallet/Cargo.toml b/clients/wallet/Cargo.toml index 23e17515b..3d4f835c7 100644 --- a/clients/wallet/Cargo.toml +++ b/clients/wallet/Cargo.toml @@ -19,11 +19,7 @@ serde = "1.0.136" serde_json = { version = '1.0.45', default-features = false, features = ['alloc'] } thiserror = "1.0" tokio = { version = "1.37", features = ["full", "tracing"] } -tokio-metrics = { version = "0.1.0", default-features = false } -tokio-stream = { version = "0.1.9", features = ["sync"] } tracing = { version = "0.1", features = ["log"] } -tracing-futures = { version = "0.2.5" } -tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter", "fmt"] } dotenv = "0.15.0" primitives = { package = "spacewalk-primitives", path = "../../primitives"}