mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:39:01 +08:00
54ff72895e
* [drogon] Update to 1.8.2 * Update ports/drogon/vcpkg.json Co-authored-by: MonicaLiu <110024546+MonicaLiu0311@users.noreply.github.com> Co-authored-by: MonicaLiu <110024546+MonicaLiu0311@users.noreply.github.com>
93 lines
1.9 KiB
JSON
93 lines
1.9 KiB
JSON
{
|
|
"name": "drogon",
|
|
"version": "1.8.2",
|
|
"description": "A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows",
|
|
"homepage": "https://github.com/an-tao/drogon",
|
|
"documentation": "https://drogon.docsforge.com/master/overview/",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
"brotli",
|
|
"jsoncpp",
|
|
{
|
|
"name": "libuuid",
|
|
"platform": "!windows & !osx"
|
|
},
|
|
"trantor",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"ctl": {
|
|
"description": "Build drogon_ctl tool."
|
|
},
|
|
"mysql": {
|
|
"description": "Support reading and writing from/to MySQL databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
{
|
|
"name": "libmariadb",
|
|
"features": [
|
|
"iconv"
|
|
],
|
|
"platform": "osx"
|
|
},
|
|
{
|
|
"name": "libmariadb",
|
|
"platform": "!osx"
|
|
}
|
|
]
|
|
},
|
|
"orm": {
|
|
"description": "Build with object-relational mapping support."
|
|
},
|
|
"postgres": {
|
|
"description": "Support reading and writing from/to Postgres databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"libpq"
|
|
]
|
|
},
|
|
"redis": {
|
|
"description": "Support reading and writing from/to Redis databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"hiredis"
|
|
]
|
|
},
|
|
"sqlite3": {
|
|
"description": "Support reading and writing from/to SQLite databases.",
|
|
"dependencies": [
|
|
{
|
|
"name": "drogon",
|
|
"features": [
|
|
"orm"
|
|
]
|
|
},
|
|
"sqlite3"
|
|
]
|
|
}
|
|
}
|
|
}
|