Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update dependencies #130

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vendor/fmt
Submodule fmt updated 55 files
+6 −0 .clang-format
+5 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+8 −36 .github/workflows/lint.yml
+15 −13 .github/workflows/linux.yml
+6 −2 .github/workflows/macos.yml
+4 −4 .github/workflows/scorecard.yml
+4 −9 .github/workflows/windows.yml
+24 −14 CMakeLists.txt
+296 −0 ChangeLog.md
+1 −0 README.md
+46 −23 doc/api.md
+1 −1 doc/get-started.md
+2 −2 doc/index.md
+4 −5 doc/syntax.md
+20 −28 include/fmt/args.h
+1,768 −1,884 include/fmt/base.h
+376 −470 include/fmt/chrono.h
+20 −22 include/fmt/color.h
+46 −24 include/fmt/compile.h
+65 −44 include/fmt/format-inl.h
+1,091 −1,284 include/fmt/format.h
+43 −55 include/fmt/os.h
+43 −88 include/fmt/ostream.h
+107 −130 include/fmt/printf.h
+98 −130 include/fmt/ranges.h
+74 −47 include/fmt/std.h
+97 −46 include/fmt/xchar.h
+19 −1 src/fmt.cc
+4 −1 src/format.cc
+6 −11 src/os.cc
+35 −3 support/mkdocs
+311 −290 support/python/mkdocstrings_handlers/cxx/__init__.py
+31 −61 support/release.py
+4 −19 test/CMakeLists.txt
+14 −0 test/args-test.cc
+131 −144 test/base-test.cc
+40 −15 test/chrono-test.cc
+1 −27 test/compile-error-test/CMakeLists.txt
+39 −12 test/compile-test.cc
+2 −2 test/format-impl-test.cc
+146 −26 test/format-test.cc
+19 −11 test/gtest/gmock-gtest-all.cc
+24 −10 test/gtest/gmock/gmock.h
+4 −3 test/gtest/gtest/gtest.h
+24 −0 test/no-builtin-types-test.cc
+1 −1 test/os-test.cc
+23 −16 test/ranges-test.cc
+3 −3 test/scan-test.cc
+5 −5 test/scan.h
+29 −3 test/std-test.cc
+1 −1 test/test-assert.h
+1 −1 test/unicode-test.cc
+4 −5 test/util.cc
+23 −105 test/xchar-test.cc
2 changes: 1 addition & 1 deletion vendor/spdlog
Submodule spdlog updated 43 files
+12 −2 .github/workflows/macos.yml
+140 −120 CMakeLists.txt
+4 −1 README.md
+4 −1 example/example.cpp
+2 −2 include/spdlog/cfg/env.h
+1 −6 include/spdlog/common.h
+2 −1 include/spdlog/details/file_helper-inl.h
+12 −0 include/spdlog/details/os-inl.h
+4 −0 include/spdlog/details/os.h
+1 −1 include/spdlog/fmt/bin_to_hex.h
+20 −28 include/spdlog/fmt/bundled/args.h
+1,768 −1,884 include/spdlog/fmt/bundled/base.h
+376 −470 include/spdlog/fmt/bundled/chrono.h
+20 −22 include/spdlog/fmt/bundled/color.h
+46 −24 include/spdlog/fmt/bundled/compile.h
+65 −44 include/spdlog/fmt/bundled/format-inl.h
+1,091 −1,284 include/spdlog/fmt/bundled/format.h
+0 −2 include/spdlog/fmt/bundled/locale.h
+43 −55 include/spdlog/fmt/bundled/os.h
+43 −88 include/spdlog/fmt/bundled/ostream.h
+107 −130 include/spdlog/fmt/bundled/printf.h
+98 −130 include/spdlog/fmt/bundled/ranges.h
+74 −47 include/spdlog/fmt/bundled/std.h
+97 −46 include/spdlog/fmt/bundled/xchar.h
+12 −6 include/spdlog/sinks/ansicolor_sink-inl.h
+4 −3 include/spdlog/sinks/ansicolor_sink.h
+6 −0 include/spdlog/sinks/basic_file_sink-inl.h
+1 −0 include/spdlog/sinks/basic_file_sink.h
+0 −1 include/spdlog/sinks/daily_file_sink.h
+1 −1 include/spdlog/sinks/null_sink.h
+6 −0 include/spdlog/sinks/rotating_file_sink-inl.h
+1 −0 include/spdlog/sinks/rotating_file_sink.h
+5 −4 include/spdlog/sinks/stdout_sinks-inl.h
+7 −0 include/spdlog/tweakme.h
+1 −1 include/spdlog/version.h
+5 −1 src/bundled_fmtlib_format.cpp
+2 −5 tests/CMakeLists.txt
+9 −0 tests/test_cfg.cpp
+2 −1 tests/test_custom_callbacks.cpp
+3 −5 tests/test_daily_logger.cpp
+40 −0 tests/test_file_logging.cpp
+35 −0 tests/test_misc.cpp
+2 −1 tests/test_sink.h
Loading