https://github.com/dup4/rapidjson-utility
Rapidjson Utility
https://github.com/dup4/rapidjson-utility
cpp json rapidjson reflect
Last synced: about 1 month ago
JSON representation
Rapidjson Utility
- Host: GitHub
- URL: https://github.com/dup4/rapidjson-utility
- Owner: Dup4
- License: mit
- Created: 2022-06-23T01:45:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T03:59:42.000Z (over 2 years ago)
- Last Synced: 2025-06-04T10:51:48.300Z (about 1 year ago)
- Topics: cpp, json, rapidjson, reflect
- Language: C++
- Homepage:
- Size: 243 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README

# rapidjson-utility
[](https://github.com/Dup4/rapidjson-utility/actions/workflows/clang_format.yml)
[](https://github.com/Dup4/rapidjson-utility/actions/workflows/test.yml)
[](https://codecov.io/gh/Dup4/rapidjson-utility)
[](https://GitHub.com/Dup4/rapidjson-utility/releases/)
## Integration
### CMake
```cmake
FetchContent_Declare(
rapidjson-utility
QUIET
GIT_REPOSITORY https://github.com/Dup4/rapidjson-utility.git
GIT_TAG v{x.y.z} # Where `x.y.z` is the release version you want to use.
)
```
### Bazel
```bazel
git_repository(
name = "rapidjson-utility",
remote = "https://github.com/Dup4/rapidjson-utility.git",
tag = "v{x.y.z}", # Where `x.y.z` is the release version you want to use.
)
```
## Usage
See the usage in the [unit test](./test/rapidjson_utility_usage_test.cc)
## License
[MIT](./LICENSE) License © 2022 - PRESENT [Dup4][dup4]
[dup4]: https://github.com/Dup4