mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:19:01 +08:00
ee0584f050
* [libssh/libssh2/libssh2] update to the latest version * update version * update patches formating * update version * update hash512 * update version' * fix CI build error * update version * update vcpkg.json and portifile.cmake * update version * delete hash * update version * revert libssh2 * update version * revert libssh2 * update portfile.cmake * update version
70 lines
1.3 KiB
JSON
70 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|