This commit is contained in:
Alexander Zhirov 2025-09-01 03:21:54 +03:00
commit 8c388b1123
Signed by: alexander
GPG key ID: C8D8BE544A27C511
11 changed files with 347 additions and 0 deletions

28
dub.json Normal file
View file

@ -0,0 +1,28 @@
{
"authors": [
"Alexander Zhirov"
],
"copyright": "Copyright © 2025, Alexander Zhirov",
"description": "A minimal D wrapper over xdiff.d for computing file differences and generating patches.",
"license": "BSL-1.0",
"name": "sdiff",
"targetType": "library",
"dependencies": {
"xdiff": {
"repository": "git+https://git.zhirov.kz/dlang/xdiff.git",
"version": "e2396bc172eba813cdcd1a96c494e35d687f576a"
}
},
"buildTypes": {
"unittest": {
"dflags": [
"-unittest",
"-g"
],
"libs": [
"xdiff"
]
}
}
}