forked from buggins/hibernated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
46 lines (46 loc) · 1.21 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
{
"name": "hibernated",
"description": "ORM for D language, similar to Hibernate",
"authors": ["Vadim Lopatin"],
"homepage": "https://github.com/buggins/hibernated",
"license": "Boost Software License (BSL 1.0)",
"dependencies": {
"ddbc": "~>0.3.6"
},
"targetType": "staticLibrary",
"targetPath": "lib",
"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"
}
}
]
}