mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 10:29:03 +08:00
f7175a73c0
* Update libssh to 0.10.4 * run x-add-version * add license and remove port * correct license * run x-add-version * Fix version database. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
71 lines
1.4 KiB
JSON
71 lines
1.4 KiB
JSON
{
|
|
"name": "libssh",
|
|
"version": "0.10.4",
|
|
"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 | 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"
|
|
]
|
|
}
|
|
}
|
|
}
|