mirror of
https://github.com/dlang-community/D-Scanner.git
synced 2025-04-26 05:10:03 +03:00

Note: currently a warning is emitted when building, because dscanner now depends on libdparse 0.22.0, but dsymbol doesn't support it officially yet. We just force it with dub.selections.json to build with 0.22.0 for executable builds.
28 lines
615 B
JSON
28 lines
615 B
JSON
{
|
|
"name" : "dscanner",
|
|
"description" : "Swiss-army knife for D source code",
|
|
"copyright" : "© Brian Schott",
|
|
"authors" : [
|
|
"Brian Schott"
|
|
],
|
|
"license" : "BSL-1.0",
|
|
"targetType" : "autodetect",
|
|
"versions" : [
|
|
"built_with_dub",
|
|
"StdLoggerDisableWarning"
|
|
],
|
|
"dependencies": {
|
|
"libdparse": ">=0.20.0 <0.23.0",
|
|
"dcd:dsymbol": ">=0.14.0 <0.16.0",
|
|
"inifiled": "~>1.3.1",
|
|
"emsi_containers": "~>0.9.0",
|
|
"libddoc": "~>0.8.0"
|
|
},
|
|
"targetPath" : "bin",
|
|
"stringImportPaths" : [
|
|
"bin"
|
|
],
|
|
"preBuildCommands" : [
|
|
"\"$DC\" -run \"$PACKAGE_DIR/dubhash.d\""
|
|
]
|
|
}
|