vcpkg/ports/cpp-httplib/vcpkg.json
miyanyan 81e65f7120
[cpp-httplib] update to 0.15.0 (#36438)
* [cpp-httplib] update to 0.15.0

* [cpp-httplib] update versions

* Update fix-find-brotli.patch

Change the EOL from CRLF to LF

* [cpp-httplib] change the EOL from CRLF to LF

* [cpp-httplib] update to 0.15.1

* [cpp-httplib] update versions

* Update cpp-httplib.json

---------

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2024-01-30 12:40:10 -08:00

41 lines
845 B
JSON

{
"name": "cpp-httplib",
"version": "0.15.1",
"description": "A single file C++11 header-only HTTP/HTTPS server and client library",
"homepage": "https://github.com/yhirose/cpp-httplib",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"brotli"
],
"features": {
"brotli": {
"description": "Enables brotli compression support using brotli",
"dependencies": [
"brotli"
]
},
"openssl": {
"description": "Enables HTTPS support using OpenSSL",
"dependencies": [
"openssl"
]
},
"zlib": {
"description": "Enables gzip compression support using zlib",
"dependencies": [
"zlib"
]
}
}
}