-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
29 lines (29 loc) · 759 Bytes
/
dub.json
File metadata and controls
29 lines (29 loc) · 759 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
{
"name": "singlog",
"authors": [
"Alexander Zhirov <alexander@zhirov.kz>"
],
"homepage": "https://git.zhirov.kz/dlang/singlog.git",
"license": "GPL-2.0",
"copyright": "© Alexander Zhirov, 2023",
"description": "Singleton for simple logging",
"targetName": "singlog",
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib"
},
{
"name": "test",
"targetType": "executable",
"targetPath": "bin",
"targetName": "test",
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
}
],
"dependencies": {
"datefmt": "~>1.0.4"
}
}