blob: 1a4bdb6344ad39610271c0015f168ff56c827b98 (
plain)
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
|
{
"name": "sqlpp11-connector-mysql",
"version-string": "ci",
"description": "Overlay for an obsolete empty port in order to unblock sqlpp11 testing: platform-specific choice of testable implementation",
"homepage": "https://github.com/microsoft/vcpkg",
"license": "MIT",
"supports": "!uwp",
"dependencies": [
{
"name": "sqlpp11",
"default-features": false,
"features": [
"mariadb"
],
"platform": "x86 & windows"
},
{
"name": "sqlpp11",
"default-features": false,
"features": [
"mysql"
],
"platform": "!(x86 & windows)"
}
]
}
|