mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 03:29:01 +08:00
43 lines
832 B
JSON
43 lines
832 B
JSON
{
|
|
"name": "libcoro",
|
|
"version": "0.10",
|
|
"description": "C++20 coroutine library",
|
|
"homepage": "https://github.com/jbaldwin/libcoro",
|
|
"license": "Apache-2.0",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"networking",
|
|
"ssl"
|
|
],
|
|
"features": {
|
|
"networking": {
|
|
"description": "Include networking features.",
|
|
"dependencies": [
|
|
"c-ares"
|
|
]
|
|
},
|
|
"platform": {
|
|
"description": "Include linux platform features.",
|
|
"supports": "linux"
|
|
},
|
|
"ssl": {
|
|
"description": "Include SSL features.",
|
|
"dependencies": [
|
|
{
|
|
"name": "libcoro",
|
|
"default-features": false,
|
|
"features": [
|
|
"networking"
|
|
]
|
|
},
|
|
"openssl"
|
|
]
|
|
}
|
|
}
|
|
}
|