diff --git a/dub.sdl b/dub.sdl index 91894bc..a6bb5d5 100644 --- a/dub.sdl +++ b/dub.sdl @@ -22,13 +22,13 @@ } configuration "library-nonet" { - dependency "vibe-d:http" version=">=0.7.30 <0.10.0" optional=true + dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true targetType "library" excludedSourceFiles "source/app.d" } configuration "dynamic-library-nonet" { - dependency "vibe-d:http" version=">=0.7.30 <0.10.0" optional=true + dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true targetType "dynamicLibrary" excludedSourceFiles "source/app.d" } diff --git a/source/dub/internal/vibecompat/inet/path.d b/source/dub/internal/vibecompat/inet/path.d index c25878a..0872b14 100644 --- a/source/dub/internal/vibecompat/inet/path.d +++ b/source/dub/internal/vibecompat/inet/path.d @@ -8,7 +8,6 @@ module dub.internal.vibecompat.inet.path; version (Have_vibe_core) public import vibe.core.path; -else version (Have_vibe_d_core) public import vibe.inet.path; else: import std.algorithm; diff --git a/source/dub/internal/vibecompat/inet/url.d b/source/dub/internal/vibecompat/inet/url.d index eb302e5..34b2ec7 100644 --- a/source/dub/internal/vibecompat/inet/url.d +++ b/source/dub/internal/vibecompat/inet/url.d @@ -9,7 +9,7 @@ public import dub.internal.vibecompat.inet.path; -version (Have_vibe_d_core) public import vibe.inet.url; +version (Have_vibe_d_inet) public import vibe.inet.url; else: import std.algorithm;