-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathdub.json
54 lines (54 loc) · 1.42 KB
/
dub.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "hibernated",
"description": "ORM for D language, similar to Hibernate",
"authors": ["Vadim Lopatin"],
"homepage": "https://github.com/buggins/hibernated",
"license": "BSL-1.0",
"dependencies": {
"ddbc": "~>0.6.0"
},
"targetType": "staticLibrary",
"targetPath": "lib",
"buildRequirements": [
"allowWarnings"
],
"toolchainRequirements": {
"dub": ">=1.14.0",
"frontend": ">=2.097"
},
"systemDependencies": "Depending on configuration: ODBC, PostgreSQL and/or SQLite v3",
"configurations": [
{
"name": "full",
"versions": ["USE_MYSQL", "USE_SQLITE", "USE_PGSQL"],
"subConfigurations": {
"ddbc": "full"
}
},
{
"name": "MySQL",
"versions": ["USE_MYSQL"],
"subConfigurations": {
"ddbc": "MySQL"
}
},
{
"name": "SQLite",
"versions": ["USE_SQLITE"],
"libs-posix": ["sqlite3"],
"libs-windows": ["sqlite3"],
"subConfigurations": {
"ddbc": "SQLite"
}
},
{
"name": "PGSQL",
"versions": ["USE_PGSQL"],
"libs-posix": ["pq"],
"libs-windows": ["libpq"],
"subConfigurations": {
"ddbc": "PGSQL"
}
}
]
}