-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
33 lines (33 loc) · 747 Bytes
/
dub.json
File metadata and controls
33 lines (33 loc) · 747 Bytes
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
{
"authors": [
"Igor Khasilev"
],
"targetType": "library",
"copyright": "Copyright © 2019, Igor Khasilev",
"description": "Hierarchical Timing Wheels",
"license": "BSL-1.0",
"name": "timingwheels",
"dependencies": {
"ikod-containers": "~>0",
"automem": "~>0.6",
"unit-threaded": "~>0.10"
},
"configurations": [
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": ["$DUB run --compiler=$$DC unit-threaded -c gen_ut_main -- -f bin/ut.d"],
"mainSourceFile": "bin/ut.d",
"excludedSourceFiles": ["source/app.d"],
"dependencies": {
"unit-threaded": "*"
},
"dflags": ["-dip1008"],
"versions": ["twtesting"],
"debugVersions": ["timingwheels"]
},
{
"name": "release"
}
]
}