This commit is contained in:
Alexander Zhirov 2025-09-09 19:39:22 +03:00
commit dc0c8349c7
Signed by: alexander
GPG key ID: C8D8BE544A27C511
18 changed files with 666 additions and 0 deletions

38
dub.json Normal file
View file

@ -0,0 +1,38 @@
{
"authors": [
"Alexander Zhirov"
],
"copyright": "Copyright © 2025, Alexander Zhirov",
"description": "A CDC Approach for Storing Chunks in an SQLite Database.",
"license": "BSL-1.0",
"name": "cdcdb",
"dependencies": {
"arsd-official:sqlite": "~>12.0.0",
"zstd": "~>0.2.1"
},
"stringImportPaths": [
"source/cdcdb/db",
"source/cdcdb/cdc"
],
"configurations": [
{
"name": "static",
"targetType": "staticLibrary",
"targetPath": "lib",
"sourcePaths": ["source"]
},
{
"name": "dynamic",
"targetType": "dynamicLibrary",
"targetPath": "lib",
"sourcePaths": ["source"]
},
{
"name": "binary",
"targetType": "executable",
"targetPath": "bin",
"mainSourceFile": "test/app.d",
"sourcePaths": ["source", "test"]
}
]
}