aboutsummaryrefslogtreecommitdiff
path: root/ports/restc-cpp/vcpkg.json
blob: b06c5faa823d03e89666a380b624de79625ff296 (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
{
  "name": "restc-cpp",
  "version-semver": "0.10.0",
  "port-version": 1,
  "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-program-options",
    "boost-system",
    "boost-uuid",
    "rapidjson"
  ],
  "default-features": [
    "openssl",
    "zlib"
  ],
  "features": {
    "boost-log": {
      "description": "Use boost-log for logging.",
      "dependencies": [
        "boost-log"
      ]
    },
    "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"
      ]
    }
  }
}