mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-21 09:33:08 +08:00
cb7d3b4999
* [libuv] Update to 1.45.0 * [libuv] Update all consuming ports * [libuv] Update versions * resolve port SHA * Add port-version * update version * revert usockets.json --------- Co-authored-by: Zhao Liu <v-zhli17@microsoft.com>
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "redis-plus-plus",
|
|
"version-semver": "1.3.9",
|
|
"port-version": 1,
|
|
"description": "This is a C++ client for Redis. It's based on hiredis, and written in C++ 11",
|
|
"homepage": "https://github.com/sewenew/redis-plus-plus",
|
|
"license": "Apache-2.0",
|
|
"dependencies": [
|
|
"hiredis",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"async": {
|
|
"description": "Build with async",
|
|
"dependencies": [
|
|
"libuv"
|
|
]
|
|
},
|
|
"async-std": {
|
|
"description": "Build async with std::future",
|
|
"dependencies": [
|
|
{
|
|
"name": "redis-plus-plus",
|
|
"default-features": false,
|
|
"features": [
|
|
"async"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"cxx17": {
|
|
"description": "Build redis-plus-plus with cxx 17 standard"
|
|
},
|
|
"tls": {
|
|
"description": "Build with TLS support",
|
|
"dependencies": [
|
|
{
|
|
"name": "hiredis",
|
|
"default-features": false,
|
|
"features": [
|
|
"ssl"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|