From 84bd595ea1f7bad3cbd8b57ae03c3544c7ea2ed0 Mon Sep 17 00:00:00 2001 From: Paul Zinselmeyer Date: Sun, 10 Mar 2024 20:22:56 +0100 Subject: [PATCH] repair example/basic tokio features --- examples/basic/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index d57537a..bb54e8d 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.36.0", features = ["net", "macros"] } +tokio = { version = "1.36.0", features = ["net", "macros", "rt-multi-thread"] } axum = "0.7.4" axum-oidc = { path = "./../.." } tower = "0.4.13"