aboutsummaryrefslogtreecommitdiff
path: root/ports/libssh/vcpkg.json
blob: 47669c5a226fbd1badf8f24fd5d6437c33b1aed1 (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
{
  "name": "libssh",
  "version-string": "0.9.5",
  "port-version": 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"
    }
  ],
  "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"
      ]
    }
  }
}