From c5bc3913d73beb3825184c4c43f0d935cdb198f3 Mon Sep 17 00:00:00 2001 From: Maxime Bedard Date: Thu, 24 Dec 2020 09:39:10 -0500 Subject: [PATCH] remove unecessary rt feature flag --- examples/test-device/Cargo.toml | 2 +- examples/test-installed/Cargo.toml | 2 +- examples/test-svc-acct/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/test-device/Cargo.toml b/examples/test-device/Cargo.toml index f361740..a581350 100644 --- a/examples/test-device/Cargo.toml +++ b/examples/test-device/Cargo.toml @@ -6,4 +6,4 @@ edition = "2018" [dependencies] yup-oauth2 = { path = "../../" } -tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/test-installed/Cargo.toml b/examples/test-installed/Cargo.toml index 09d5c2c..070835f 100644 --- a/examples/test-installed/Cargo.toml +++ b/examples/test-installed/Cargo.toml @@ -6,4 +6,4 @@ edition = "2018" [dependencies] yup-oauth2 = { path = "../../" } -tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/test-svc-acct/Cargo.toml b/examples/test-svc-acct/Cargo.toml index ea00906..927dbf0 100644 --- a/examples/test-svc-acct/Cargo.toml +++ b/examples/test-svc-acct/Cargo.toml @@ -6,4 +6,4 @@ edition = "2018" [dependencies] yup-oauth2 = { path = "../../" } -tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }