Skip to content

Commit

Permalink
Enable building against vibe.d 0.10.x.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Sep 7, 2024
1 parent cb01957 commit 2d7d3db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
10 changes: 7 additions & 3 deletions dub.selections.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
}
}
1 change: 1 addition & 0 deletions source/dub/internal/vibecompat/inet/url.d
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2d7d3db

Please sign in to comment.