From 3e4f284747e9782046e5b4e304c5d908c43cda32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Tr=C3=A9guier?= Date: Mon, 30 Apr 2018 19:11:41 +0200 Subject: [PATCH] Split email and htmltotext subpackages --- dub.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 32f6d1f..e91aa02 100644 --- a/dub.json +++ b/dub.json @@ -59,8 +59,8 @@ "name": "email", "description": "Email helper library, both sending MIME messages and parsing incoming mbox/maildir messages", "targetType": "sourceLibrary", - "dependencies": {"arsd-official:dom":"*"}, - "sourceFiles": ["email.d", "htmltotext.d"] + "dependencies": {"arsd-official:htmltotext":"*"}, + "sourceFiles": ["email.d"] }, { @@ -70,6 +70,14 @@ "dependencies": {"arsd-official:color_base":"*"}, "sourceFiles": ["image.d", "png.d", "bmp.d", "jpeg.d", "targa.d", "pcx.d", "dds.d"] }, + { + "name": "htmltotext", + "description": "HTML to plain text conversion", + "targetType": "sourceLibrary", + "dependencies": {"arsd-official:dom":"*", "arsd-official:color_base":"*"}, + "sourceFiles": ["htmltotext.d"] + + }, { "name": "dom", "description": "HTML tag soup DOM library",