Replies: 4 comments
-
|
Thanks for the suggestion and for your interest with Glaze. More formats are indeed on the roadmap. Recently I've been making the core logic more format agnostic and easier to specialize to support various formats. The plan is to add more formats like YAML, BSON, etc. but I could use help. Another collaborator is actively developing Erlang binary support, which is planned to be added to Glaze. Glaze already CSV and BEVE support and Mustache support is under development. Would you be interested in helping develop/support YAML in Glaze? I would be happy to add you as a contributor. Note While we will always need format specific unit tests, a goal is to add a format agnostic unit test that simply serializes and deserializes various C++ structures with a given format type that can be specified in CMake. This will allow us to test large amount of Glaze features with many of supported formats without needing to write additional code for each format. Format agnostic roundtrip testing will be merged soon in: #1380 |
Beta Was this translation helpful? Give feedback.
-
|
Awesome, and thanks for the writeup. I can't promise anything in the near future, but we'll definitely benefit from having a single dependency ( |
Beta Was this translation helpful? Give feedback.
-
|
there is a rapidyaml better than yaml-cpp, much more faster now |
Beta Was this translation helpful? Give feedback.
-
|
I am trying to add YAML parsing logic. How do you actually do that? All I can find so far is that I can do |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Now, I assume this is something that is far from the current goal with the project, but I am currently looking into performance issues with
yaml-cppthat we use and obviously came to think ofglaze.Given the generic approach to compile time reflection,
YAMLcould very well be an excellent candidate forglazegiven how close it is toJSON(technically being a superset ofJSON).Anyways, thought I'd drop it here as something to think about. :)
Beta Was this translation helpful? Give feedback.
All reactions