From 14b3abdb9ab9658a06f0fc4135983d04fb9d48d5 Mon Sep 17 00:00:00 2001 From: EliasSchriefer Date: Thu, 20 Aug 2020 17:41:21 +0200 Subject: [PATCH] Move dependencies to member manifests ...because apparently it's not allowed to have dependencies in the workspace manifest if it only defines other members and isn't a member itself or something :man_shrugging: --- Cargo.toml | 8 +------- sfsmcctl/Cargo.toml | 6 +++++- sfsmcd/Cargo.toml | 6 +++++- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95437ae..5145705 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,2 @@ [workspace] -members = ["sfsmcd", "sfsmcctl"] - -[dependencies] -toml = "0.5" -tokio = { version = "0.2", features = ["full"] } -async-minecraft-ping = "0.2" -dbus = "0.8" \ No newline at end of file +members = ["sfsmcd", "sfsmcctl"] \ No newline at end of file diff --git a/sfsmcctl/Cargo.toml b/sfsmcctl/Cargo.toml index a5720bc..569440d 100644 --- a/sfsmcctl/Cargo.toml +++ b/sfsmcctl/Cargo.toml @@ -7,4 +7,8 @@ authors = ["Elias Schriefer"] edition = "2018" [dependencies] -clap = { version = "2.33", features = ["wrap_help"] } \ No newline at end of file +clap = { version = "2.33", features = ["wrap_help"] } +toml = "0.5" +tokio = { version = "0.2", features = ["full"] } +async-minecraft-ping = "0.2" +dbus = "0.8" \ No newline at end of file diff --git a/sfsmcd/Cargo.toml b/sfsmcd/Cargo.toml index 811d79f..5cd144f 100644 --- a/sfsmcd/Cargo.toml +++ b/sfsmcd/Cargo.toml @@ -6,4 +6,8 @@ authors = ["Elias Schriefer"] edition = "2018" [dependencies] -actix-web = "2.0" \ No newline at end of file +actix-web = "2.0" +toml = "0.5" +tokio = { version = "0.2", features = ["full"] } +async-minecraft-ping = "0.2" +dbus = "0.8" \ No newline at end of file