On Tue, 16 May 2017 16:05:42 GMT, Martin Tschierschke wrote:

Now as using the latest vibe.d (0.8 beta) the build time,
when touching app.d or a .dt file has increased to app 4 seconds, app 1 second more then some releases before.

Now since vibe is split in several sub packages, how to get use of this, when i do not need for example vibe-d:mongodb or
vibe-d:mail ?

I am using the faster gold linker with dmd.

Regards mt.

I found a partial answer by looking at the examples:

Now I use in dub.sdl:

dependency "vibe-d:http" version="~>0.7.0"

dependency "diet-ng" version="~>1.1"
versions "VibeDefaultMain"
versions "DietUseCache"

and in the code:

import vibe.http.fileserver;
import vibe.http.router;
import vibe.http.server;

Would be cool to know the import hierarchy of vibe.d.