singlog/dub.json

30 lines
759 B
JSON
Raw Permalink Normal View History

2023-03-23 09:20:46 +00:00
{
"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",
2023-04-27 18:08:12 +00:00
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib"
},
{
"name": "test",
"targetType": "executable",
"targetPath": "bin",
2023-06-07 07:02:47 +00:00
"targetName": "test",
2023-04-27 18:08:12 +00:00
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
}
],
2023-03-23 09:20:46 +00:00
"dependencies": {
"datefmt": "~>1.0.4"
}
}