vcpkg/ports/cpr/vcpkg.json
JonLiu1993 870165b0f6
[CPR] Update to version 1.9.0 (#25244)
* [CPR] Update to 1.8.3 (again, see details)

* update version

* [CPR] Update to 1.8.4

* update version

* [CPR] Update to 1.9.0

* remove v1.8.4 in cpr.json

* update version
2022-07-18 14:26:53 -07:00

43 lines
826 B
JSON

{
"name": "cpr",
"version-semver": "1.9.0",
"description": "C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project.",
"homepage": "https://github.com/libcpr/cpr",
"license": "MIT",
"dependencies": [
{
"name": "curl",
"default-features": false
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"ssl"
],
"features": {
"ssl": {
"description": "Enable SSL support",
"dependencies": [
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
]
},
{
"name": "openssl",
"platform": "linux"
}
]
}
}
}