vcpkg/ports/yyjson/vcpkg.json
2023-09-27 01:29:54 -07:00

47 lines
964 B
JSON

{
"name": "yyjson",
"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": {
"description": "Build with JSON writer",
"dependencies": [
{
"name": "yyjson",
"default-features": false,
"features": [
"reader"
]
}
]
}
}
}