Add a few dependencies for using dbus

This commit is contained in:
Elias Schriefer 2020-08-23 01:04:29 +02:00
parent 3263df377d
commit 5852f80b1f
2 changed files with 5 additions and 2 deletions

View File

@ -11,6 +11,7 @@ clap = { version = "2.33", features = ["wrap_help"] }
toml = "0.5" toml = "0.5"
tokio = { version = "0.2", features = ["full"] } tokio = { version = "0.2", features = ["full"] }
async-minecraft-ping = "0.2" async-minecraft-ping = "0.2"
dbus = "0.8" dbus = { version = "0.8", features = ["futures"] }
dbus-tokio = "0.5"
log = "0.4" log = "0.4"
env_logger = "0.7" env_logger = "0.7"

View File

@ -10,6 +10,8 @@ actix-web = "2.0"
toml = "0.5" toml = "0.5"
tokio = { version = "0.2", features = ["full"] } tokio = { version = "0.2", features = ["full"] }
async-minecraft-ping = "0.2" async-minecraft-ping = "0.2"
dbus = "0.8" dbus = { version = "0.8", features = ["futures"] }
dbus-tokio = "0.5"
dbus-crossroads = "0.2"
log = "0.4" log = "0.4"
env_logger = "0.7" env_logger = "0.7"