2020-10-31 03:47:16 +08:00
{
"name" : "asio" ,
2021-10-19 05:32:53 +08:00
"version" : "1.20.0" ,
2020-10-31 03:47:16 +08:00
"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" ,
2021-10-19 05:32:53 +08:00
"documentation" : "https://think-async.com/Asio/asio-1.20.0/doc/" ,
2021-09-03 04:27:36 +08:00
"dependencies" : [
{
"name" : "vcpkg-cmake" ,
"host" : true
} ,
{
"name" : "vcpkg-cmake-config" ,
"host" : true
}
] ,
2020-10-31 03:47:16 +08:00
"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"
]
}
}
}