aboutsummaryrefslogtreecommitdiff
path: root/ports/arrow/vcpkg.json
blob: 98b76849430e8edd7d3b1fd2ce92fd78d618cfed (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
  "name": "arrow",
  "version": "5.0.0",
  "description": "Cross-language development platform for in-memory analytics",
  "homepage": "https://arrow.apache.org",
  "supports": "x64",
  "dependencies": [
    "boost-filesystem",
    "boost-multiprecision",
    "boost-system",
    "brotli",
    "bzip2",
    "gflags",
    "glog",
    "lz4",
    "openssl",
    "re2",
    "snappy",
    "thrift",
    "utf8proc",
    "zlib",
    "zstd"
  ],
  "default-features": [
    "csv",
    "filesystem",
    "json",
    "parquet"
  ],
  "features": {
    "csv": {
      "description": "CSV support"
    },
    "dataset": {
      "description": "Dataset support"
    },
    "filesystem": {
      "description": "Filesystem support"
    },
    "flight": {
      "description": "Arrow Flight RPC support",
      "dependencies": [
        "abseil",
        "c-ares",
        "grpc",
        "protobuf"
      ]
    },
    "jemalloc": {
      "description": "jemalloc allocator"
    },
    "json": {
      "description": "JSON support",
      "dependencies": [
        "rapidjson"
      ]
    },
    "mimalloc": {
      "description": "mimalloc allocator"
    },
    "orc": {
      "description": "ORC support",
      "dependencies": [
        "orc"
      ]
    },
    "parquet": {
      "description": "Parquet support"
    },
    "s3": {
      "description": "S3 support",
      "dependencies": [
        {
          "name": "aws-sdk-cpp",
          "default-features": false,
          "features": [
            "cognito-identity",
            "config",
            "identity-management",
            "s3",
            "sts",
            "transfer"
          ]
        }
      ]
    }
  }
}