aboutsummaryrefslogtreecommitdiff
path: root/ports/libssh/vcpkg.json
blob: 28a190f64d784c6ab49282684ae9c6da6679ab76 (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
{
  "name": "libssh",
  "version": "0.9.6",
  "description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
  "homepage": "https://www.libssh.org/",
  "supports": "!(uwp | arm)",
  "dependencies": [
    {
      "name": "libssh",
      "default-features": false,
      "features": [
        "mbedtls"
      ],
      "platform": "android"
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "crypto"
  ],
  "features": {
    "crypto": {
      "description": "Default crypto backend",
      "dependencies": [
        {
          "name": "libssh",
          "features": [
            "mbedtls"
          ]
        }
      ]
    },
    "mbedtls": {
      "description": "Crypto support (mbedTLS)",
      "dependencies": [
        {
          "name": "mbedtls",
          "default-features": false
        },
        {
          "name": "mbedtls",
          "features": [
            "pthreads"
          ],
          "platform": "!android"
        }
      ]
    },
    "openssl": {
      "description": "Crypto support (OpenSSL)",
      "dependencies": [
        "openssl"
      ]
    },
    "zlib": {
      "description": "libssh with zlib",
      "dependencies": [
        "zlib"
      ]
    }
  }
}