From a16f1864abda53e50be6d9c414cbdff3593ba991 Mon Sep 17 00:00:00 2001 From: haru-s Date: Thu, 2 Feb 2023 16:57:41 +0900 Subject: [PATCH] Use "silly" library for unittest --- dub.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dub.json b/dub.json index faaa007..adc5a32 100644 --- a/dub.json +++ b/dub.json @@ -2,9 +2,6 @@ "authors": [ "various" ], - "dependencies": { - "undead": "~>1.1.8" - }, "description": "D Forms Library, or DFL, is a Win32 windowing library for the D language.", "license": "in license.txt", "name": "dfl", @@ -51,11 +48,18 @@ "configurations": [ { "name" : "library", - "targetType": "staticLibrary" + "targetType": "staticLibrary", + "dependencies": { + "undead": "~>1.1.8" + } }, { "name" : "unittest", - "targetType": "staticLibrary" + "targetType": "staticLibrary", + "dependencies": { + "undead": "~>1.1.8", + "silly": "~>1.2.0-dev.2" + } } ] }