From 0a5d542cd0857f2c59d2104606ebc229c32db224 Mon Sep 17 00:00:00 2001 From: Nikolay Komarevskiy Date: Tue, 23 Jul 2024 13:53:59 +0200 Subject: [PATCH] chore: use specific tokio/tokio-util features --- ic-agent/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ic-agent/Cargo.toml b/ic-agent/Cargo.toml index fa0eb645e..2512db7de 100644 --- a/ic-agent/Cargo.toml +++ b/ic-agent/Cargo.toml @@ -74,14 +74,14 @@ hyper-rustls = { version = "0.27", default-features = false, features = [ "http1", "http2", ], optional = true } -tokio = { version = "1.24.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["time"] } tower = { version = "0.4.13", optional = true } async-trait = "^0.1.0" tracing = "^0.1.0" arc-swap = "^1.0.0" simple_moving_average = "^1.0.0" tracing-subscriber = "^0.2.0" -tokio-util = { version = "^0.7.0", features = ["full"] } +tokio-util = { version = "^0.7.0", features = ["rt"] } rustls-webpki = "0.102" [target.'cfg(target_family = "wasm")'.dependencies]