aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/yyjson/vcpkg.json
blob: 73fc15a6010169d6fc95304d9b6f345f5643a618 (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
{
  "name": "yyjson",
  "version": "0.12.0",
  "description": "A high performance JSON library written in ANSI C",
  "homepage": "https://github.com/ibireme/yyjson",
  "license": "MIT",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "fast-fp-conv",
    "non-standard",
    "reader",
    "writer"
  ],
  "features": {
    "fast-fp-conv": {
      "description": "Build with custom floating-point number conversion"
    },
    "non-standard": {
      "description": "Build with support for non-standard JSON"
    },
    "reader": {
      "description": "Build with JSON reader"
    },
    "writer": {
      "description": "Build with JSON writer",
      "dependencies": [
        {
          "name": "yyjson",
          "default-features": false,
          "features": [
            "reader"
          ]
        }
      ]
    }
  }
}