-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.sdl
44 lines (38 loc) · 1.1 KB
/
dub.sdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name "oceandrift-http"
description "Microframework & HTTP application server"
copyright "Copyright © 2022-2024 Elias Batek"
license "BSL-1.0"
authors "Elias Batek (0xEAB)"
targetType "library"
targetPath "bin"
dependency ":message" version="*"
subPackage {
name "message"
description "HTTP Message Abstraction"
targetPath "bin"
importPaths "message/"
sourcePaths "message/"
}
dependency ":server" version="*"
subPackage {
name "server"
description "HTTP Application Server (powered by socketplate)"
targetPath "bin"
importPaths "server/"
sourcePaths "server/"
dflags "-preview=dip1000"
dependency "httparsed" version="~>1.2"
dependency "oceandrift-http:message" version="*"
dependency "socketplate" version="~>0.30"
}
dependency ":microframework" version="*"
subPackage {
name "microframework"
description "Micro web framework"
targetPath "bin"
importPaths "microframework/"
sourcePaths "microframework/"
dflags "-preview=dip1000"
dependency "oceandrift-http:server" version="*"
dependency "oceandrift-validation" version="~>0.2"
}