json icon indicating copy to clipboard operation
json copied to clipboard

A C++11 library for parsing and serializing JSON to and from a DOM container in memory.

Results 216 json issues
Sort by recently updated
recently updated
newest added

We need to evaluate the performance of Boost.JSON against Glaze. Pure DOM (`json::value`) and to/from struct (apples to apples).

I was wondering if there is any interest in implementing an incorporating JCS serialization (https://datatracker.ietf.org/doc/html/rfc8785) to be able to hash/sign json documents. I understand something like this should do it,...

Tests using the https://github.com/bloomberg/clang-p2996 compiler. More information: https://github.com/cppalliance/drone-ci/blob/master/docs/reflection.md Let me know if you encounter any problems.

This simple program ``` #include int main() { const auto payload = boost::json::serialize(boost::json::object{{"field", "value"}}); } ``` , built with `g++ -g -o main main.cpp -I boost_1_88_0 -fsanitize=address -fsanitize=pointer-subtract`, and run...