vcpkg/ports/bitserializer/vcpkg.json
Pavel Kisliak edc91e1c48
[BitSerializer] Update to v0.50 (#28564)
* [BitSerializer] Update to version 0.9

* [BitSerializer] Add new version 0.50

* [BitSerializer] Update baseline and versions files

* [BitSerializer] Add static linkage check

* [BitSerializer] Update version file

* [BitSerializer] Add 'usage' file

* [BitSerializer] Update version file

* [BitSerializer] Remove conditional check linkage type (by comment from review)

* [BitSerializer] Update version file

* Add copy 'usage' file

* [BitSerializer] Update versions file
2022-12-30 00:02:28 -08:00

47 lines
1.2 KiB
JSON

{
"name": "bitserializer",
"version": "0.50",
"description": "C++ 17 library for serialization to JSON, XML, YAML, CSV",
"homepage": "https://bitbucket.org/Pavel_Kisliak/bitserializer",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"cpprestjson-archive": {
"description": "Module for support JSON (implementation based on the CppRestSDK library)",
"dependencies": [
"cpprestsdk"
]
},
"csv-archive": {
"description": "Module for support CSV"
},
"pugixml-archive": {
"description": "Module for support XML (implementation based on the PugiXml library)",
"dependencies": [
"pugixml"
]
},
"rapidjson-archive": {
"description": "Module for support JSON (implementation based on the RapidJson library)",
"dependencies": [
"rapidjson"
]
},
"rapidyaml-archive": {
"description": "Module for support YAML (implementation based on the RapidYaml library)",
"dependencies": [
"ryml"
]
}
}
}