mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 07:26:17 +08:00
36 lines
684 B
JSON
36 lines
684 B
JSON
{
|
|
"name": "prometheus-cpp",
|
|
"version-semver": "0.13.0",
|
|
"description": "Prometheus Client Library for Modern C++",
|
|
"default-features": [
|
|
"compression",
|
|
"pull"
|
|
],
|
|
"features": {
|
|
"compression": {
|
|
"description": "Enable zlib compression",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
},
|
|
"pull": {
|
|
"description": "Support for regular pull mode",
|
|
"dependencies": [
|
|
"civetweb"
|
|
]
|
|
},
|
|
"push": {
|
|
"description": "Support push gateway",
|
|
"dependencies": [
|
|
"curl"
|
|
]
|
|
},
|
|
"tests": {
|
|
"description": "Additional testing support",
|
|
"dependencies": [
|
|
"gtest"
|
|
]
|
|
}
|
|
}
|
|
}
|