mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:29:07 +08:00
4f50d77c9e
* [asio] update to 1.20.0 * Update CI baseline
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "asio",
|
|
"version": "1.20.0",
|
|
"description": "Asio is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach.",
|
|
"homepage": "https://github.com/chriskohlhoff/asio",
|
|
"documentation": "https://think-async.com/Asio/asio-1.20.0/doc/",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"coroutine": {
|
|
"description": "Boost.Coroutine (optional) if you use spawn() to launch coroutines",
|
|
"dependencies": [
|
|
"boost-coroutine"
|
|
]
|
|
},
|
|
"openssl": {
|
|
"description": "OpenSSL (optional) if you use Asio's SSL support.",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"regex": {
|
|
"description": "Boost.Regex (optional) if you use any of the read_until() or async_read_until() overloads that take a boost::regex parameter.",
|
|
"dependencies": [
|
|
"boost-regex"
|
|
]
|
|
}
|
|
}
|
|
}
|