mirage-injector/dub.json
Mike Bierlee eda86dc975 Rename package name to somewhat fix DUB builds
DUB builds were failing because of long path names, due to the long project name
2022-11-28 20:02:52 +03:00

34 lines
900 B
JSON

{
"name": "mirage-injector",
"description": "A Poodinis value injector for reading config files using Mirage Config",
"authors": ["Mike Bierlee"],
"copyright": "Copyright © 2022, Mike Bierlee",
"license": "mit",
"dependencies": {
"poodinis": "~>8.1.3",
"mirage-config": "~>1.0.0"
},
"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"
}
]
}