mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:09:07 +08:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "redis-plus-plus",
|
|
"version-semver": "1.3.10",
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|