Skip to content

Commit

Permalink
Updating 3rd party dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gershnik committed Oct 2, 2024
1 parent 2083e6d commit 684c4be
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

### Changed
- Updated 3rd party dependencies

## [1.14] - 2024-05-29

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ list(APPEND DEPENDECIES_JSON "\"sys_string\": \"pkg:github/${SYS_STRING_REPO}@${
#################################################

set(ISPTR_REPO gershnik/intrusive_shared_ptr)
set(ISPTR_VER v1.4)
set(ISPTR_VER v1.5)
FetchContent_Declare(isptr
GIT_REPOSITORY https://github.com/${ISPTR_REPO}.git
GIT_TAG ${ISPTR_VER}
Expand All @@ -46,7 +46,7 @@ list(APPEND DEPENDECIES_JSON "\"isptr\": \"pkg:github/${ISPTR_REPO}@${ISPTR_VER}
#################################################

set(PTL_REPO gershnik/ptl)
set(PTL_VER v1.2)
set(PTL_VER v1.3)
FetchContent_Declare(ptl
GIT_REPOSITORY https://github.com/${PTL_REPO}.git
GIT_TAG ${PTL_VER}
Expand Down Expand Up @@ -77,7 +77,7 @@ if (NOT LibXml2_FOUND)
set(LIBXML2_WITH_MODULES OFF)
set(LIBXML2_WITH_PROGRAMS OFF)

set(LIBXML_VER v2.12.6)
set(LIBXML_VER v2.13.4)
FetchContent_Declare(libxml2
GIT_REPOSITORY https://gitlab.gnome.org/GNOME/libxml2.git
GIT_TAG ${LIBXML_VER}
Expand All @@ -91,7 +91,7 @@ endif()
#################################################

set(UUID_REPO gershnik/libuuid-cmake)
set(UUID_VER v2.40.1)
set(UUID_VER v2.40.2)
FetchContent_Declare(libuuid
GIT_REPOSITORY https://github.com/${UUID_REPO}.git
GIT_TAG ${UUID_VER}
Expand All @@ -105,7 +105,7 @@ list(APPEND DEPENDECIES_JSON "\"libuuid\": \"pkg:github/${UUID_REPO}@${UUID_VER}
set(FMT_INSTALL OFF)

set(FMT_REPO fmtlib/fmt)
set(FMT_VER 10.2.1)
set(FMT_VER 11.0.2)
FetchContent_Declare(fmt
GIT_REPOSITORY https://github.com/${FMT_REPO}
GIT_TAG ${FMT_VER}
Expand All @@ -122,7 +122,7 @@ set(SPDLOG_NO_TLS ON CACHE BOOL "prevent spdlog from using thread local storage"
set(SPDLOG_FMT_EXTERNAL ON CACHE BOOL "Use external fmt library instead of bundled")

set(SPDLOG_REPO gabime/spdlog)
set(SPDLOG_VER v1.13.0)
set(SPDLOG_VER v1.14.1)
FetchContent_Declare(spdlog
GIT_REPOSITORY https://github.com/${SPDLOG_REPO}
GIT_TAG ${SPDLOG_VER}
Expand Down Expand Up @@ -150,7 +150,7 @@ list(APPEND DEPENDECIES_JSON "\"tomlplusplus\": \"pkg:github/${TOMPLUSPLUS_REPO}
#################################################

set(OUTCOME_REPO ned14/outcome)
set(OUTCOME_VER v2.2.8)
set(OUTCOME_VER v2.2.10)
# FetchContent_Declare(outcome
# GIT_REPOSITORY https://github.com/${OUTCOME_REPO}
# GIT_TAG ${OUTCOME_VER}
Expand Down
2 changes: 1 addition & 1 deletion src/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ template <> struct fmt::formatter<sys_string> : private fmt::formatter<const cha
using super::parse;

template <typename FormatContext>
auto format(const sys_string & str, FormatContext & ctx) -> decltype(ctx.out()) {
auto format(const sys_string & str, FormatContext & ctx) const -> decltype(ctx.out()) {
return super::format(str.c_str(), ctx);
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ template <> struct fmt::formatter<NetworkInterface> {
return it;
}
template <typename FormatContext>
auto format(const NetworkInterface & iface, FormatContext & ctx) -> decltype(ctx.out()) {
auto format(const NetworkInterface & iface, FormatContext & ctx) const -> decltype(ctx.out()) {
return fmt::format_to(ctx.out(), "{}(idx: {})", iface.name, iface.index);
}
};
Expand Down

0 comments on commit 684c4be

Please sign in to comment.