2022-09-14 07:53:48 +08:00
{
"name" : "configcat" ,
2024-07-10 21:55:31 +08:00
"version" : "4.0.3" ,
2022-09-14 07:53:48 +08:00
"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" : [
"nlohmann-json" ,
{
"name" : "vcpkg-cmake" ,
"host" : true
} ,
{
"name" : "vcpkg-cmake-config" ,
"host" : true
} ,
"z4kn4fein-semver"
2023-12-14 15:27:11 +08:00
] ,
"default-features" : [
2024-07-10 21:55:31 +08:00
"network" ,
"sha"
2023-12-14 15:27:11 +08:00
] ,
"features" : {
"network" : {
2024-07-10 21:55:31 +08:00
"description" : "Use curl for network" ,
2023-12-14 15:27:11 +08:00
"dependencies" : [
{
"name" : "curl" ,
"default-features" : false ,
"features" : [
"ssl"
]
} ,
{
"name" : "openssl" ,
"platform" : "linux"
}
]
2024-07-10 21:55:31 +08:00
} ,
"sha" : {
"description" : "Use hash-library for SHA calculations" ,
"dependencies" : [
"hash-library"
]
2023-12-14 15:27:11 +08:00
}
}
2022-09-14 07:53:48 +08:00
}