-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump third_party/yaml-cpp from
84459a7
to d45c4fb
Bumps [third_party/yaml-cpp](https://github.com/jbeder/yaml-cpp) from `84459a7` to `d45c4fb`. - [Release notes](https://github.com/jbeder/yaml-cpp/releases) - [Commits](jbeder/yaml-cpp@84459a7...d45c4fb) --- updated-dependencies: - dependency-name: third_party/yaml-cpp dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
431df21
commit bf75566
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule yaml-cpp
updated
27 files
+3 −0 | .github/workflows/build.yml | |
+114 −0 | MODULE.bazel.lock | |
+2 −2 | README.md | |
+0 −10 | WORKSPACE | |
+0 −2 | include/yaml-cpp/dll.h | |
+2 −1 | include/yaml-cpp/emitter.h | |
+2 −0 | include/yaml-cpp/exceptions.h | |
+15 −0 | include/yaml-cpp/fptostring.h | |
+2 −1 | include/yaml-cpp/node/convert.h | |
+1 −1 | include/yaml-cpp/node/detail/iterator.h | |
+1 −1 | include/yaml-cpp/node/detail/node_iterator.h | |
+4 −2 | include/yaml-cpp/node/impl.h | |
+4,196 −0 | src/contrib/dragonbox.h | |
+7 −2 | src/emitfromevents.cpp | |
+238 −0 | src/fptostring.cpp | |
+1 −1 | src/parse.cpp | |
+24 −0 | src/scanner.cpp | |
+1 −0 | src/scanner.h | |
+7 −0 | src/scantoken.cpp | |
+17 −3 | test/BUILD.bazel | |
+1 −0 | test/CMakeLists.txt | |
+242 −0 | test/fptostring_test.cpp | |
+14 −0 | test/integration/BUILD.bazel | |
+14 −1 | test/integration/emitter_test.cpp | |
+0 −0 | test/integration/handler_test.h | |
+71 −0 | test/integration/load_node_test.cpp | |
+17 −2 | test/node/node_test.cpp |