Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Apr 28, 2024
1 parent f32a239 commit e08746e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/c4core
Submodule c4core updated 119 files
2 changes: 1 addition & 1 deletion ext/c4fs
2 changes: 1 addition & 1 deletion ext/rapidyaml
Submodule rapidyaml updated 92 files
+2 −0 .github/release.sh
+127 −29 .github/reqs.sh
+89 −37 .github/setenv.sh
+3 −3 .github/workflows/benchmarks.yml
+131 −85 .github/workflows/clang.yml
+17 −16 .github/workflows/clang_tidy.yml
+4 −4 .github/workflows/codeql.yml
+18 −19 .github/workflows/coverage.yml
+1 −1 .github/workflows/emscripten.yml
+193 −47 .github/workflows/gcc.yml
+1 −1 .github/workflows/install.yml
+1 −1 .github/workflows/macosx.yml
+2 −2 .github/workflows/rarearchs.yml
+34 −30 .github/workflows/release.yml
+2 −2 .github/workflows/samples.yml
+2 −2 .github/workflows/windows.yml
+3 −0 .gitignore
+41 −0 .readthedocs.yaml
+24 −6 CMakeLists.txt
+103 −377 README.md
+1 −17 ROADMAP.md
+6 −1 api/CMakeLists.txt
+11 −12 api/python/Makefile
+2 −0 api/python/requirements.txt
+24 −0 api/python/tests/test_parse.py
+23 −2 api/ryml.i
+1 −1 bm/CMakeLists.txt
+3 −1 bm/bm_common.hpp
+4 −2 bm/bm_emit.cpp
+104 −0 changelog/0.6.0.md
+0 −0 changelog/current.md
+2 −0 doc/.gitignore
+2,953 −0 doc/Doxyfile
+269 −0 doc/DoxygenLayout.xml
+35 −0 doc/Makefile
+129 −0 doc/conf.py
+37 −0 doc/doxy_main.md
+463 −0 doc/doxyrest-config.lua
+130 −0 doc/index.rst
+5 −0 doc/requirements.txt
+36 −0 doc/sphinx_alternative_libraries.rst
+165 −0 doc/sphinx_is_it_rapid.rst
+135 −0 doc/sphinx_other_languages.rst
+25 −0 doc/sphinx_quicklinks.rst
+33 −0 doc/sphinx_try_quickstart.rst
+223 −0 doc/sphinx_using.rst
+112 −0 doc/sphinx_yaml_standard.rst
+1 −1 ext/c4core
+2 −1 pyproject.toml
+1,424 −358 samples/quickstart.cpp
+2 −0 setup.py
+30 −4 src/c4/yml/common.cpp
+257 −80 src/c4/yml/common.hpp
+15 −14 src/c4/yml/detail/parser_dbg.hpp
+3 −1 src/c4/yml/detail/print.hpp
+8 −2 src/c4/yml/detail/stack.hpp
+13 −3 src/c4/yml/emit.def.hpp
+151 −107 src/c4/yml/emit.hpp
+534 −224 src/c4/yml/node.hpp
+52 −31 src/c4/yml/parse.cpp
+57 −26 src/c4/yml/parse.hpp
+2 −0 src/c4/yml/preprocess.cpp
+14 −16 src/c4/yml/preprocess.hpp
+1 −1 src/c4/yml/std/vector.hpp
+14 −22 src/c4/yml/tree.cpp
+125 −97 src/c4/yml/tree.hpp
+13 −0 src/c4/yml/writer.hpp
+28 −3 src/ryml.natvis
+17 −1 tbump.toml
+5 −3 test/CMakeLists.txt
+7 −1 test/callbacks_tester.hpp
+52 −7 test/test_callbacks.cpp
+58 −21 test/test_case.cpp
+21 −9 test/test_case.hpp
+3 −2 test/test_github_issues.cpp
+3 −0 test/test_group.hpp
+1 −1 test/test_install/CMakeLists.txt
+39 −22 test/test_json.cpp
+489 −6 test/test_noderef.cpp
+13 −12 test/test_number.cpp
+5 −0 test/test_parser.cpp
+15 −0 test/test_plain_scalar.cpp
+128 −2 test/test_simple_map.cpp
+1 −1 test/test_singleheader/CMakeLists.txt
+4 −0 test/test_stack.cpp
+3 −3 test/test_suite/test_suite_common.hpp
+1 −1 test/test_suite/test_suite_events.cpp
+8 −1 test/test_suite/test_suite_events_emitter.cpp
+6 −6 test/test_suite/test_suite_parts.cpp
+372 −75 test/test_tree.cpp
+4 −0 tools/parse_emit.cpp
+23 −4 tools/yaml_events.cpp

0 comments on commit e08746e

Please sign in to comment.