vcpkg/ports/yyjson/vcpkg.json

47 lines
964 B
JSON
Raw Normal View History

{
"name": "yyjson",
2023-09-27 16:29:54 +08:00
"version": "0.8.0",
"description": "A high performance JSON library written in ANSI C",
"homepage": "https://github.com/ibireme/yyjson",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"fast-fp-conv",
"non-standard",
"reader",
"writer"
],
"features": {
"fast-fp-conv": {
"description": "Build with custom floating-point number conversion"
},
"non-standard": {
"description": "Build with support for non-standard JSON"
},
"reader": {
"description": "Build with JSON reader"
},
"writer": {
2023-09-07 14:42:57 +08:00
"description": "Build with JSON writer",
"dependencies": [
{
"name": "yyjson",
"default-features": false,
"features": [
"reader"
]
}
]
}
}
}