From 4acf163b428c9d61054ebe917c4b4c89324a20d4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 25 Sep 2023 18:32:12 +0200 Subject: [PATCH] Combine dependencies and dependencies-linux Platform dependencies aren't supported according to the dub documentation, that states: "this setting does not support platform suffixes". dub test with dub 1.34.0 produces a warning: "dependencies-linux: Key is not a valid member of this section. Did you mean: dependencies" Then the build fails because it cannot find modules defined in the dependency. --- dub.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dub.json b/dub.json index 79f7c90..0584081 100644 --- a/dub.json +++ b/dub.json @@ -13,10 +13,7 @@ "tanya:meta": "*", "tanya:os": "*", "tanya:middle": "*", - "tanya:test": "*" - }, - - "dependencies-linux": { + "tanya:test": "*", "mir-linux-kernel": "~>1.0.0" },