mirage-injector/dub.json

34 lines
905 B
JSON
Raw Permalink Normal View History

2022-10-31 19:46:04 +01:00
{
"name": "mirage-injector",
2022-10-31 19:46:04 +01:00
"description": "A Poodinis value injector for reading config files using Mirage Config",
"authors": ["Mike Bierlee"],
2023-01-11 00:08:32 +01:00
"copyright": "Copyright © 2022-2023, Mike Bierlee",
2022-10-31 19:46:04 +01:00
"license": "mit",
"dependencies": {
2023-03-13 21:32:30 +01:00
"poodinis": "~>9.0.0",
2022-10-31 19:46:04 +01:00
"mirage-config": "~>1.0.0"
2022-11-27 16:47:33 +01:00
},
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"sourcePaths": ["source"],
"mainSourceFile": "testmain.d"
},
{
"name": "quickstartExample",
"targetType": "executable",
"targetName": "quickstartExample",
"sourcePaths": ["examples/quickstart"],
"importPaths": ["source"],
"copyFiles": ["examples/quickstart/config.ini"],
"targetPath": "bin/examples/quickstart",
"workingDirectory": "bin/examples/quickstart"
}
]
2022-10-31 19:46:04 +01:00
}