cleanup cargo.toml and remove unused tokio features

This commit is contained in:
LordMZTE 2021-04-28 23:51:12 +02:00
parent 1efda6db50
commit ca1064acb3
1 changed files with 8 additions and 2 deletions

View File

@ -9,7 +9,6 @@ edition = "2018"
[dependencies]
anyhow = "1.0.40"
asciify = "0.1.6"
async-minecraft-ping = { git = "https://github.com/LordMZTE/async-minecraft-ping.git", tag = "v0.2.5" }
clap = "2.33.3"
image = "0.23.14"
image-base64 = "0.1.0"
@ -20,10 +19,17 @@ smart-default = "0.6.0"
structopt = "0.3.21"
term_size = "0.3.2"
termcolor = "1.1.2"
tokio = { version = "1.5.0", features = ["full"] }
unicode-width = "0.1.8"
yaml-rust = "0.4.5"
[dependencies.async-minecraft-ping]
git = "https://github.com/LordMZTE/async-minecraft-ping.git"
tag = "v0.2.5"
[dependencies.tokio]
version = "1.5.0"
features = ["rt-multi-thread", "macros", "time"]
[build-dependencies]
clap = "2.33.3"
lazy_static = "1.4.0"