From 430ed6d774df8320b8226a15e4d3fa55388c8a2b Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 15 Mar 2021 16:26:24 -0700 Subject: [PATCH] Export tokio for program-test clients --- program-test/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/program-test/src/lib.rs b/program-test/src/lib.rs index 53520c13a..caeaffd3e 100644 --- a/program-test/src/lib.rs +++ b/program-test/src/lib.rs @@ -51,6 +51,10 @@ use { // Export types so test clients can limit their solana crate dependencies pub use solana_banks_client::BanksClient; + +// Export tokio for test clients +pub use tokio; + pub mod programs; #[macro_use]