forked from dlang/cdcdb
		
	
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1,018 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1,018 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"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": {
 | 
						|
		"d2sqlite3": "~>1.0.0",
 | 
						|
		"zstd": "~>0.2.1"
 | 
						|
	},
 | 
						|
	"stringImportPaths": [
 | 
						|
		"source/cdcdb"
 | 
						|
	],
 | 
						|
	"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"
 | 
						|
			]
 | 
						|
		},
 | 
						|
		{
 | 
						|
			"name": "unittest",
 | 
						|
			"targetType": "executable",
 | 
						|
			"targetPath": "bin",
 | 
						|
			"sourcePaths": [
 | 
						|
				"source",
 | 
						|
				"test"
 | 
						|
			],
 | 
						|
			"buildOptions": [
 | 
						|
				"unittests"
 | 
						|
			],
 | 
						|
			"dflags": ["-main"],
 | 
						|
			"mainSourceFile": "test/unittest.d"
 | 
						|
		}
 | 
						|
	]
 | 
						|
}
 |