From 48bf7fbc3f752a4b54c8dff83558ea21b75d3d4f Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 11 Jul 2023 15:12:06 -0400 Subject: [PATCH] integration-test: strip tokio features --- test/integration-test/Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 6da87368..35f4d94b 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -11,11 +11,15 @@ aya-log = { path = "../../aya-log" } aya-obj = { path = "../../aya-obj" } libc = { version = "0.2.105" } log = "0.4" -object = { version = "0.31", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.31", default-features = false, features = [ + "std", + "read_core", + "elf", +] } procfs = "0.15.1" rbpf = "0.2.0" tempfile = "3.3.0" -tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.24", default-features = false, features = ["time"] } [build-dependencies] cargo_metadata = "0.15.4"