mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 16:59:02 +08:00
81e65f7120
* [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>
41 lines
845 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|