-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdub.sdl
41 lines (41 loc) · 1.01 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
name "iopipe"
description "A modular io library in D."
copyright "Copyright © 2011-2018, Steven Schveighoffer"
authors "Steven Schveighoffer" "Dmitry Olshansky"
license "BSL-1.0"
dependency "io" version="*" optional=true
subPackage {
name "byline"
targetType "executable"
sourcePaths "examples/byline"
dependency "iopipe" version="*"
dependency "io" version="~>0.3.1"
}
subPackage {
name "convert"
targetType "executable"
sourcePaths "examples/convert"
dependency "iopipe" version="*"
dependency "io" version="~>0.3.1"
}
subPackage {
name "unzip"
targetType "executable"
sourcePaths "examples/unzip"
dependency "iopipe" version="*"
dependency "io" version="~>0.3.1"
}
subPackage {
name "zip"
targetType "executable"
sourcePaths "examples/zip"
dependency "iopipe" version="*"
dependency "io" version="~>0.3.1"
}
subPackage {
name "search"
targetType "executable"
sourcePaths "examples/search"
dependency "iopipe" version="*"
dependency "io" version="~>0.3.1"
}