readconf/dub.json

30 lines
803 B
JSON
Raw Normal View History

2023-03-23 15:10:56 +00:00
{
"name": "readconf",
"authors": [
"Alexander Zhirov <alexander@zhirov.kz>"
],
"homepage": "https://git.zhirov.kz/dlang/readconf.git",
"license": "GPL-2.0",
"copyright": "© Alexander Zhirov, 2023",
"description": "Singleton for simple reading of the configuration file",
2023-03-23 23:26:02 +00:00
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib"
},
{
"name": "unittest",
"targetPath": "bin",
"dependencies": {
"silly": "~>1.2.0-dev.2"
2023-03-23 23:26:02 +00:00
},
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
}
],
2023-03-23 15:10:56 +00:00
"targetName": "readconf",
"dependencies": {
2024-02-09 15:47:54 +00:00
"singlog": "~>0.5.0"
2023-03-26 08:36:45 +00:00
}
2023-03-23 23:26:02 +00:00
}