diff --git a/dub.sdl b/dub.sdl index 642a20482..56f48ef39 100644 --- a/dub.sdl +++ b/dub.sdl @@ -31,13 +31,13 @@ configuration "library" { } configuration "library-nonet" { - dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true + dependency "vibe-d:http" version=">=0.9.0 <0.11.0" optional=true targetType "library" excludedSourceFiles "source/app.d" } configuration "dynamic-library-nonet" { - dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true + dependency "vibe-d:http" version=">=0.9.0 <0.11.0" optional=true targetType "dynamicLibrary" excludedSourceFiles "source/app.d" } diff --git a/dub.selections.json b/dub.selections.json index b10e96e0b..1dc241495 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -4,7 +4,7 @@ "botan": "1.12.19", "botan-math": "1.0.3", "diet-ng": "1.8.1", - "eventcore": "0.9.30", + "eventcore": "0.9.32", "libasync": "0.8.6", "libev": "5.0.0+4.04", "libevent": "2.0.2+2.0.16", @@ -15,7 +15,11 @@ "stdx-allocator": "2.77.5", "taggedalgebraic": "0.11.23", "vibe-container": "1.3.1", - "vibe-core": "2.8.5", - "vibe-d": "0.9.8" + "vibe-core": "2.9.0", + "vibe-d": "0.10.0", + "vibe-http": "1.1.1", + "vibe-inet": "1.0.0", + "vibe-serialization": "1.0.4", + "vibe-stream": "1.1.0" } } diff --git a/source/dub/internal/vibecompat/inet/url.d b/source/dub/internal/vibecompat/inet/url.d index 34b2ec7d5..31b76c468 100644 --- a/source/dub/internal/vibecompat/inet/url.d +++ b/source/dub/internal/vibecompat/inet/url.d @@ -10,6 +10,7 @@ module dub.internal.vibecompat.inet.url; public import dub.internal.vibecompat.inet.path; version (Have_vibe_d_inet) public import vibe.inet.url; +else version (Have_vibe_inet) public import vibe.inet.url; else: import std.algorithm;