chkpass/dub.json

38 lines
878 B
JSON
Raw Normal View History

2024-12-05 23:28:00 +00:00
{
"name": "chkpass",
"authors": [
"Alexander Zhirov <alexander@zhirov.kz>"
],
"license": "GPL-2.0",
"copyright": "© Alexander Zhirov, 2024",
"description": "Checking and changing the user's password using the PAM library and its modules",
"targetPath": "bin",
"targetType": "executable",
"dependencies": {
"singlog": "~>0.5.0",
"readconf": "~>0.4.1",
"commandr": "~>1.1.0"
},
"libs": [
"pam"
],
"preBuildCommands": [
"./install-debian-dependencies.sh"
2024-12-05 23:41:51 +00:00
],
"buildTypes": {
"debug": {
"buildOptions": [
"debugMode",
"debugInfo"
]
},
"release": {
"buildOptions": [
"releaseMode",
"inline",
"optimize"
]
}
}
2024-12-05 23:28:00 +00:00
}