vcpkg/ports/libssh/vcpkg.json
Kai Pastor 896800c86f
[libssh] Update to 0.10.5 (#32231)
* [libssh] Update to 0.10.5

* Fix pc file for mingw on linux

* Fix exported config

* Update ci baseline

* Update usage

* Revert "Update ci baseline"

---------

Co-authored-by: Cheney-Wang <850426846@qq.com>
2023-06-28 01:06:03 -07:00

71 lines
1.4 KiB
JSON

{
"name": "libssh",
"version": "0.10.5",
"description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
"homepage": "https://www.libssh.org/",
"license": "LGPL-2.1-only",
"supports": "!uwp & !xbox",
"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"
]
}
}
}