[configcat] Update to version 4.0.3 (#39714)

This commit is contained in:
Peter Adam Korodi 2024-07-10 15:55:31 +02:00 committed by GitHub
parent 5cb8081fd3
commit a82dd0cef6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 18 additions and 6 deletions

View File

@ -6,13 +6,14 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO configcat/cpp-sdk
REF "v${VERSION}"
SHA512 c36c136a16cc7206e1516546d075535a1cb1756649a51fc632f3ac1b0a31e3f23f41f8aac0989aee725bac9949a722db6cbc75111276b43403607e1fc25ce866
SHA512 3d14c84b1e682cf63951e6560fb0367b2bf9897e20367e047743ff532a194f71b2b05eff66fa8611dc3f5396ec8f281c64147511e0f8ac448bfd0db7fdc82571
HEAD_REF master
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
INVERTED_FEATURES
network CONFIGCAT_USE_EXTERNAL_NETWORK_ADAPTER
sha CONFIGCAT_USE_EXTERNAL_SHA
)
vcpkg_cmake_configure(

View File

@ -1,11 +1,10 @@
{
"name": "configcat",
"version": "4.0.1",
"version": "4.0.3",
"description": "ConfigCat SDK for C++ provides easy integration for your application to ConfigCat. ConfigCat is a feature flag and configuration management service that lets you separate feature releases from deployments. Alternative to LaunchDarkly.",
"homepage": "https://configcat.com/",
"license": "MIT",
"dependencies": [
"hash-library",
"nlohmann-json",
{
"name": "vcpkg-cmake",
@ -18,11 +17,12 @@
"z4kn4fein-semver"
],
"default-features": [
"network"
"network",
"sha"
],
"features": {
"network": {
"description": "Use built-in curl network adapter",
"description": "Use curl for network",
"dependencies": [
{
"name": "curl",
@ -36,6 +36,12 @@
"platform": "linux"
}
]
},
"sha": {
"description": "Use hash-library for SHA calculations",
"dependencies": [
"hash-library"
]
}
}
}

View File

@ -1817,7 +1817,7 @@
"port-version": 0
},
"configcat": {
"baseline": "4.0.1",
"baseline": "4.0.3",
"port-version": 0
},
"console-bridge": {

View File

@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "38e6f06047d549497488219bf384c3a7dfe7e121",
"version": "4.0.3",
"port-version": 0
},
{
"git-tree": "047e875774a1ac69a4323863f0e8f1912f0cb3d0",
"version": "4.0.1",