mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 23:49:06 +08:00
105b59c846
I'd like to update port file for [BitSerializer](https://github.com/PavelKisliak/BitSerializer) to latest version 0.70 ([Release notes](https://github.com/PavelKisliak/BitSerializer/releases/tag/v0.70)). - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file~~. - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "bitserializer",
|
|
"version": "0.70",
|
|
"description": "C++ 17 library for serialization to JSON, XML, YAML, CSV",
|
|
"homepage": "https://github.com/PavelKisliak/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"
|
|
},
|
|
"msgpack-archive": {
|
|
"description": "Module for support MsgPack"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|