sfsmc/sfsmcd/Cargo.toml
EliasSchriefer a4bf221c92 Remove dbus-crossroads and code using it
That library didn't do it for me.
Adding async methods was a pain in the a** with lifetime and type bounds
confusing the heck out of me.
So I tried it with `dbus::tree` (in the next commits). It still was a
bit of work to get it working, but at least it **is** working.
2020-09-13 14:48:35 +02:00

16 lines
394 B
TOML

[package]
name = "sfsmcd"
version = "0.1.0"
description = "A service that controls a minecraft and a web (status) server"
authors = ["Elias Schriefer"]
edition = "2018"
[dependencies]
actix-web = "2.0"
toml = "0.5"
tokio = { version = "0.2", features = ["full"] }
async-minecraft-ping = "0.2"
dbus = { version = "0.8", features = ["futures"] }
dbus-tokio = "0.5"
log = "0.4"
env_logger = "0.7"