mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 16:59:02 +08:00
38dd6b15ad
* Add libcoro 0.7 * Update CI baseline * Add "supports": "!windows" * Update CI baseline * Remove unneeded vcpkg-cmake-config dependency * Update CI baseline * Disable x64-linux and x64-osx in ci.baseline.txt * Apply code review suggestions * Update CI baseline * Add patch to disable git config * Update CI baseline * Fix patch * Update CI baseline * Allow shared library builds * Update CI baseline * Update libcoro to version 0.8 * Update CI baseline * Update CI baseline * Fix line endings * Update CI baseline * Fix hash * Update CI baseline * Update version database * Force rerun of CI pipeline * Update to libcoro 0.9 * Update CI baseline * Replace manual dependency check with manifest-based one * Remove v0.8 version * Update CI baseline --------- Co-authored-by: chausner <chausner@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
45 lines
867 B
JSON
45 lines
867 B
JSON
{
|
|
"name": "libcoro",
|
|
"version": "0.9",
|
|
"description": "C++20 coroutine library",
|
|
"homepage": "https://github.com/jbaldwin/libcoro",
|
|
"license": "Apache-2.0",
|
|
"supports": "!windows",
|
|
"dependencies": [
|
|
"tl-expected",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"networking",
|
|
"ssl",
|
|
"threading"
|
|
],
|
|
"features": {
|
|
"networking": {
|
|
"description": "Include networking features.",
|
|
"dependencies": [
|
|
"c-ares"
|
|
]
|
|
},
|
|
"ssl": {
|
|
"description": "Include SSL features.",
|
|
"dependencies": [
|
|
{
|
|
"name": "libcoro",
|
|
"default-features": false,
|
|
"features": [
|
|
"networking"
|
|
]
|
|
},
|
|
"openssl"
|
|
]
|
|
},
|
|
"threading": {
|
|
"description": "Include multithreading features."
|
|
}
|
|
}
|
|
}
|