From 704e5cf8f43bc20454a638e444f1e21dbd387b89 Mon Sep 17 00:00:00 2001 From: EliasSchriefer Date: Fri, 18 Dec 2020 17:15:07 +0100 Subject: [PATCH] Update dependencies --- sfsmcctl/Cargo.toml | 3 +-- sfsmcd/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/sfsmcctl/Cargo.toml b/sfsmcctl/Cargo.toml index 413ec74..47816e6 100644 --- a/sfsmcctl/Cargo.toml +++ b/sfsmcctl/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "sfsmcctl" version = "0.1.0" -# description = "More than a web server that dynamically show the status of a Minecraft server (formerly known as bukkit-server-status)" description = "Control the sfsmcd minecraft and status servers" authors = ["Elias Schriefer"] edition = "2018" @@ -9,7 +8,7 @@ edition = "2018" [dependencies] clap = { version = "2.33", features = ["wrap_help", "color"] } toml = "0.5" -tokio = { version = "0.2", features = ["full"] } +tokio = { version = "0.2", features = ["rt-threaded"] } async-minecraft-ping = "0.2" dbus = { version = "0.9", features = ["futures"] } dbus-tokio = "0.6" diff --git a/sfsmcd/Cargo.toml b/sfsmcd/Cargo.toml index aa6f382..4893c4d 100644 --- a/sfsmcd/Cargo.toml +++ b/sfsmcd/Cargo.toml @@ -6,9 +6,9 @@ authors = ["Elias Schriefer"] edition = "2018" [dependencies] -actix-web = "3.2" +actix-web = "3.3" toml = "0.5" -tokio = { version = "0.2", features = ["full"] } +tokio = { version = "0.2", features = ["process", "sync", "blocking", "rt-threaded"] } async-minecraft-ping = "0.2" dbus = { version = "0.9", features = ["futures"] } dbus-tokio = "0.6"