Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
DiscoStarslayer committed Nov 13, 2023
1 parent 8f8fa1d commit 8d65aa5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/fmt/fmt
Submodule fmt updated 90 files
+8 −0 .github/dependabot.yml
+6 −0 .github/issue_template.md
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+12 −1 .github/workflows/doc.yml
+42 −10 .github/workflows/linux.yml
+20 −2 .github/workflows/macos.yml
+65 −0 .github/workflows/scorecard.yml
+61 −21 .github/workflows/windows.yml
+108 −71 CMakeLists.txt
+5,282 −0 ChangeLog.md
+0 −4,738 ChangeLog.rst
+1 −1 LICENSE
+76 −51 README.rst
+11 −2 doc/CMakeLists.txt
+6 −6 doc/_static/bootstrap.min.js
+315 −192 doc/api.rst
+9 −6 doc/build.py
+2 −2 doc/index.rst
+163 −10 doc/syntax.rst
+38 −0 doc/usage.rst
+5 −5 include/fmt/args.h
+484 −344 include/fmt/chrono.h
+117 −122 include/fmt/color.h
+62 −170 include/fmt/compile.h
+1,045 −1,342 include/fmt/core.h
+823 −1,801 include/fmt/format-inl.h
+2,329 −872 include/fmt/format.h
+0 −2 include/fmt/locale.h
+76 −149 include/fmt/os.h
+135 −55 include/fmt/ostream.h
+211 −193 include/fmt/printf.h
+369 −431 include/fmt/ranges.h
+481 −0 include/fmt/std.h
+86 −64 include/fmt/xchar.h
+38 −29 src/fmt.cc
+15 −96 src/format.cc
+121 −80 src/os.cc
+3 −3 support/Vagrantfile
+0 −43 support/appveyor-build.py
+0 −31 support/appveyor.yml
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+1 −2 support/bazel/BUILD.bazel
+5 −4 support/bazel/README.md
+1 −1 support/build.gradle
+0 −70 support/cmake/cxx14.cmake
+4 −1 support/cmake/fmt-config.cmake.in
+7 −1 support/manage.py
+1 −1 support/printable.py
+0 −159 support/rst2md.py
+36 −18 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/args-test.cc
+408 −28 test/chrono-test.cc
+6 −0 test/color-test.cc
+42 −4 test/compile-error-test/CMakeLists.txt
+2 −1 test/compile-fp-test.cc
+37 −39 test/compile-test.cc
+167 −232 test/core-test.cc
+18 −0 test/detect-stdfs.cc
+2 −0 test/enforce-checks-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+258 −152 test/format-impl-test.cc
+489 −388 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+2 −2 test/fuzzing/one-arg.cc
+2 −2 test/fuzzing/two-args.cc
+3 −1 test/gtest-extra-test.cc
+1 −1 test/gtest-extra.cc
+2 −7 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+2 −2 test/gtest/gmock-gtest-all.cc
+2 −2 test/mock-allocator.h
+36 −96 test/module-test.cc
+24 −69 test/os-test.cc
+69 −79 test/ostream-test.cc
+3 −90 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+14 −42 test/printf-test.cc
+225 −58 test/ranges-test.cc
+1 −1 test/scan-test.cc
+17 −14 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+264 −0 test/std-test.cc
+2 −3 test/test-main.cc
+4 −4 test/unicode-test.cc
+1 −2 test/util.cc
+2 −6 test/util.h
+243 −104 test/xchar-test.cc
2 changes: 1 addition & 1 deletion 3rdparty/rapidyaml/rapidyaml
2 changes: 1 addition & 1 deletion 3rdparty/rcheevos/rcheevos
2 changes: 1 addition & 1 deletion 3rdparty/xz/xz
Submodule xz updated 54 files
+1 −1 COPYING
+1 −1 ChangeLog
+1 −6 INSTALL
+2 −1 Makefile.am
+38 −0 NEWS
+1 −1 README
+5 −0 THANKS
+5 −5 configure.ac
+1 −1 doc/examples/02_decompress.c
+206 −0 doc/examples/11_file_info.c
+2 −1 doc/examples/Makefile
+2 −2 doc/faq.txt
+1 −0 dos/Makefile
+1 −1 dos/config.h
+5 −1 extra/scanlzma/scanlzma.c
+1 −1 src/common/common_w32res.rc
+11 −0 src/common/tuklib_integer.h
+1 −1 src/liblzma/Makefile.am
+5 −1 src/liblzma/api/lzma.h
+36 −2 src/liblzma/api/lzma/base.h
+17 −4 src/liblzma/api/lzma/container.h
+4 −3 src/liblzma/api/lzma/filter.h
+77 −7 src/liblzma/api/lzma/index.h
+3 −3 src/liblzma/api/lzma/version.h
+2 −0 src/liblzma/common/Makefile.inc
+1 −4 src/liblzma/common/alone_decoder.c
+4 −4 src/liblzma/common/auto_decoder.c
+15 −3 src/liblzma/common/common.c
+855 −0 src/liblzma/common/file_info.c
+2 −2 src/liblzma/common/index.c
+7 −7 src/liblzma/common/index_decoder.c
+24 −0 src/liblzma/common/index_decoder.h
+1 −4 src/liblzma/common/stream_decoder.c
+6 −1 src/liblzma/liblzma.map
+6 −0 src/liblzma/lzma/lzma_decoder.c
+1 −3 src/liblzma/rangecoder/range_common.h
+1 −1 src/scripts/xzless.in
+25 −5 src/xz/file_io.c
+13 −0 src/xz/file_io.h
+52 −212 src/xz/list.c
+1 −0 src/xz/message.c
+3 −3 src/xz/xz.1
+2 −2 src/xzdec/xzdec.1
+1 −1 windows/README-Windows.txt
+0 −354 windows/liblzma.vcxproj
+0 −383 windows/liblzma_dll.vcxproj
+1 −1 windows/vs2013/config.h
+356 −0 windows/vs2013/liblzma.vcxproj
+385 −0 windows/vs2013/liblzma_dll.vcxproj
+0 −0 windows/vs2013/xz_win.sln
+148 −0 windows/vs2017/config.h
+357 −0 windows/vs2017/liblzma.vcxproj
+386 −0 windows/vs2017/liblzma_dll.vcxproj
+48 −0 windows/vs2017/xz_win.sln
2 changes: 1 addition & 1 deletion 3rdparty/zstd/zstd
Submodule zstd updated 532 files

0 comments on commit 8d65aa5

Please sign in to comment.