diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/redis-plus-plus/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/redis-plus-plus/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/redis-plus-plus/vcpkg.json | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/vcpkg/ports/redis-plus-plus/vcpkg.json b/vcpkg/ports/redis-plus-plus/vcpkg.json new file mode 100644 index 0000000..ddc120e --- /dev/null +++ b/vcpkg/ports/redis-plus-plus/vcpkg.json @@ -0,0 +1,53 @@ +{ + "name": "redis-plus-plus", + "version-semver": "1.3.15", + "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" + ] + } + ] + } + } +} |