aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/restc-cpp/vcpkg.json
blob: ff77c13f4894e8febf331be519ff420ae8323731 (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
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "restc-cpp",
  "version-semver": "1.0.0",
  "port-version": 2,
  "description": "Modern C++ REST Client library",
  "homepage": "https://github.com/jgaa/restc-cpp",
  "license": "MIT",
  "dependencies": [
    "boost-asio",
    "boost-chrono",
    "boost-context",
    "boost-coroutine",
    "boost-date-time",
    "boost-filesystem",
    "boost-log",
    "boost-program-options",
    "boost-uuid",
    "rapidjson",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "openssl",
    "zlib"
  ],
  "features": {
    "openssl": {
      "description": "OpenSSL support.",
      "dependencies": [
        "openssl"
      ]
    },
    "threaded-ctx": {
      "description": "Allow asio contexts with multiple threads. Enables thread-safe internal access."
    },
    "zlib": {
      "description": "Use zlib.",
      "dependencies": [
        "zlib"
      ]
    }
  }
}