aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/asio/vcpkg.json
blob: 276b4ecd765382216f8f75bbf7b268d2acdd6cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "name": "asio",
  "version": "1.32.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://think-async.com/Asio/",
  "documentation": "https://think-async.com/Asio/Documentation.html",
  "license": "BSL-1.0",
  "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"
      ]
    }
  }
}