qupled 1.3.2__cp313-cp313-macosx_14_0_arm64.whl → 1.3.3__cp313-cp313-macosx_14_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,259 @@
1
+ // Formatting library for C++ - optional wchar_t and exotic character support
2
+ //
3
+ // Copyright (c) 2012 - present, Victor Zverovich
4
+ // All rights reserved.
5
+ //
6
+ // For the license information refer to format.h.
7
+
8
+ #ifndef FMT_XCHAR_H_
9
+ #define FMT_XCHAR_H_
10
+
11
+ #include <cwchar>
12
+
13
+ #include "format.h"
14
+
15
+ #ifndef FMT_STATIC_THOUSANDS_SEPARATOR
16
+ # include <locale>
17
+ #endif
18
+
19
+ FMT_BEGIN_NAMESPACE
20
+ namespace detail {
21
+
22
+ template <typename T>
23
+ using is_exotic_char = bool_constant<!std::is_same<T, char>::value>;
24
+
25
+ inline auto write_loc(std::back_insert_iterator<detail::buffer<wchar_t>> out,
26
+ loc_value value, const format_specs<wchar_t>& specs,
27
+ locale_ref loc) -> bool {
28
+ #ifndef FMT_STATIC_THOUSANDS_SEPARATOR
29
+ auto& numpunct =
30
+ std::use_facet<std::numpunct<wchar_t>>(loc.get<std::locale>());
31
+ auto separator = std::wstring();
32
+ auto grouping = numpunct.grouping();
33
+ if (!grouping.empty()) separator = std::wstring(1, numpunct.thousands_sep());
34
+ return value.visit(loc_writer<wchar_t>{out, specs, separator, grouping, {}});
35
+ #endif
36
+ return false;
37
+ }
38
+ } // namespace detail
39
+
40
+ FMT_BEGIN_EXPORT
41
+
42
+ using wstring_view = basic_string_view<wchar_t>;
43
+ using wformat_parse_context = basic_format_parse_context<wchar_t>;
44
+ using wformat_context = buffer_context<wchar_t>;
45
+ using wformat_args = basic_format_args<wformat_context>;
46
+ using wmemory_buffer = basic_memory_buffer<wchar_t>;
47
+
48
+ #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409
49
+ // Workaround broken conversion on older gcc.
50
+ template <typename... Args> using wformat_string = wstring_view;
51
+ inline auto runtime(wstring_view s) -> wstring_view { return s; }
52
+ #else
53
+ template <typename... Args>
54
+ using wformat_string = basic_format_string<wchar_t, type_identity_t<Args>...>;
55
+ inline auto runtime(wstring_view s) -> runtime_format_string<wchar_t> {
56
+ return {{s}};
57
+ }
58
+ #endif
59
+
60
+ template <> struct is_char<wchar_t> : std::true_type {};
61
+ template <> struct is_char<detail::char8_type> : std::true_type {};
62
+ template <> struct is_char<char16_t> : std::true_type {};
63
+ template <> struct is_char<char32_t> : std::true_type {};
64
+
65
+ template <typename... T>
66
+ constexpr auto make_wformat_args(const T&... args)
67
+ -> format_arg_store<wformat_context, T...> {
68
+ return {args...};
69
+ }
70
+
71
+ inline namespace literals {
72
+ #if FMT_USE_USER_DEFINED_LITERALS && !FMT_USE_NONTYPE_TEMPLATE_ARGS
73
+ constexpr auto operator""_a(const wchar_t* s, size_t)
74
+ -> detail::udl_arg<wchar_t> {
75
+ return {s};
76
+ }
77
+ #endif
78
+ } // namespace literals
79
+
80
+ template <typename It, typename Sentinel>
81
+ auto join(It begin, Sentinel end, wstring_view sep)
82
+ -> join_view<It, Sentinel, wchar_t> {
83
+ return {begin, end, sep};
84
+ }
85
+
86
+ template <typename Range>
87
+ auto join(Range&& range, wstring_view sep)
88
+ -> join_view<detail::iterator_t<Range>, detail::sentinel_t<Range>,
89
+ wchar_t> {
90
+ return join(std::begin(range), std::end(range), sep);
91
+ }
92
+
93
+ template <typename T>
94
+ auto join(std::initializer_list<T> list, wstring_view sep)
95
+ -> join_view<const T*, const T*, wchar_t> {
96
+ return join(std::begin(list), std::end(list), sep);
97
+ }
98
+
99
+ template <typename Char, FMT_ENABLE_IF(!std::is_same<Char, char>::value)>
100
+ auto vformat(basic_string_view<Char> format_str,
101
+ basic_format_args<buffer_context<type_identity_t<Char>>> args)
102
+ -> std::basic_string<Char> {
103
+ auto buf = basic_memory_buffer<Char>();
104
+ detail::vformat_to(buf, format_str, args);
105
+ return to_string(buf);
106
+ }
107
+
108
+ template <typename... T>
109
+ auto format(wformat_string<T...> fmt, T&&... args) -> std::wstring {
110
+ return vformat(fmt::wstring_view(fmt), fmt::make_wformat_args(args...));
111
+ }
112
+
113
+ // Pass char_t as a default template parameter instead of using
114
+ // std::basic_string<char_t<S>> to reduce the symbol size.
115
+ template <typename S, typename... T, typename Char = char_t<S>,
116
+ FMT_ENABLE_IF(!std::is_same<Char, char>::value &&
117
+ !std::is_same<Char, wchar_t>::value)>
118
+ auto format(const S& format_str, T&&... args) -> std::basic_string<Char> {
119
+ return vformat(detail::to_string_view(format_str),
120
+ fmt::make_format_args<buffer_context<Char>>(args...));
121
+ }
122
+
123
+ template <typename Locale, typename S, typename Char = char_t<S>,
124
+ FMT_ENABLE_IF(detail::is_locale<Locale>::value&&
125
+ detail::is_exotic_char<Char>::value)>
126
+ inline auto vformat(
127
+ const Locale& loc, const S& format_str,
128
+ basic_format_args<buffer_context<type_identity_t<Char>>> args)
129
+ -> std::basic_string<Char> {
130
+ return detail::vformat(loc, detail::to_string_view(format_str), args);
131
+ }
132
+
133
+ template <typename Locale, typename S, typename... T, typename Char = char_t<S>,
134
+ FMT_ENABLE_IF(detail::is_locale<Locale>::value&&
135
+ detail::is_exotic_char<Char>::value)>
136
+ inline auto format(const Locale& loc, const S& format_str, T&&... args)
137
+ -> std::basic_string<Char> {
138
+ return detail::vformat(loc, detail::to_string_view(format_str),
139
+ fmt::make_format_args<buffer_context<Char>>(args...));
140
+ }
141
+
142
+ template <typename OutputIt, typename S, typename Char = char_t<S>,
143
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
144
+ detail::is_exotic_char<Char>::value)>
145
+ auto vformat_to(OutputIt out, const S& format_str,
146
+ basic_format_args<buffer_context<type_identity_t<Char>>> args)
147
+ -> OutputIt {
148
+ auto&& buf = detail::get_buffer<Char>(out);
149
+ detail::vformat_to(buf, detail::to_string_view(format_str), args);
150
+ return detail::get_iterator(buf, out);
151
+ }
152
+
153
+ template <typename OutputIt, typename S, typename... T,
154
+ typename Char = char_t<S>,
155
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
156
+ detail::is_exotic_char<Char>::value)>
157
+ inline auto format_to(OutputIt out, const S& fmt, T&&... args) -> OutputIt {
158
+ return vformat_to(out, detail::to_string_view(fmt),
159
+ fmt::make_format_args<buffer_context<Char>>(args...));
160
+ }
161
+
162
+ template <typename Locale, typename S, typename OutputIt, typename... Args,
163
+ typename Char = char_t<S>,
164
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
165
+ detail::is_locale<Locale>::value&&
166
+ detail::is_exotic_char<Char>::value)>
167
+ inline auto vformat_to(
168
+ OutputIt out, const Locale& loc, const S& format_str,
169
+ basic_format_args<buffer_context<type_identity_t<Char>>> args) -> OutputIt {
170
+ auto&& buf = detail::get_buffer<Char>(out);
171
+ vformat_to(buf, detail::to_string_view(format_str), args,
172
+ detail::locale_ref(loc));
173
+ return detail::get_iterator(buf, out);
174
+ }
175
+
176
+ template <typename OutputIt, typename Locale, typename S, typename... T,
177
+ typename Char = char_t<S>,
178
+ bool enable = detail::is_output_iterator<OutputIt, Char>::value &&
179
+ detail::is_locale<Locale>::value &&
180
+ detail::is_exotic_char<Char>::value>
181
+ inline auto format_to(OutputIt out, const Locale& loc, const S& format_str,
182
+ T&&... args) ->
183
+ typename std::enable_if<enable, OutputIt>::type {
184
+ return vformat_to(out, loc, detail::to_string_view(format_str),
185
+ fmt::make_format_args<buffer_context<Char>>(args...));
186
+ }
187
+
188
+ template <typename OutputIt, typename Char, typename... Args,
189
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
190
+ detail::is_exotic_char<Char>::value)>
191
+ inline auto vformat_to_n(
192
+ OutputIt out, size_t n, basic_string_view<Char> format_str,
193
+ basic_format_args<buffer_context<type_identity_t<Char>>> args)
194
+ -> format_to_n_result<OutputIt> {
195
+ using traits = detail::fixed_buffer_traits;
196
+ auto buf = detail::iterator_buffer<OutputIt, Char, traits>(out, n);
197
+ detail::vformat_to(buf, format_str, args);
198
+ return {buf.out(), buf.count()};
199
+ }
200
+
201
+ template <typename OutputIt, typename S, typename... T,
202
+ typename Char = char_t<S>,
203
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
204
+ detail::is_exotic_char<Char>::value)>
205
+ inline auto format_to_n(OutputIt out, size_t n, const S& fmt, T&&... args)
206
+ -> format_to_n_result<OutputIt> {
207
+ return vformat_to_n(out, n, detail::to_string_view(fmt),
208
+ fmt::make_format_args<buffer_context<Char>>(args...));
209
+ }
210
+
211
+ template <typename S, typename... T, typename Char = char_t<S>,
212
+ FMT_ENABLE_IF(detail::is_exotic_char<Char>::value)>
213
+ inline auto formatted_size(const S& fmt, T&&... args) -> size_t {
214
+ auto buf = detail::counting_buffer<Char>();
215
+ detail::vformat_to(buf, detail::to_string_view(fmt),
216
+ fmt::make_format_args<buffer_context<Char>>(args...));
217
+ return buf.count();
218
+ }
219
+
220
+ inline void vprint(std::FILE* f, wstring_view fmt, wformat_args args) {
221
+ auto buf = wmemory_buffer();
222
+ detail::vformat_to(buf, fmt, args);
223
+ buf.push_back(L'\0');
224
+ if (std::fputws(buf.data(), f) == -1)
225
+ FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
226
+ }
227
+
228
+ inline void vprint(wstring_view fmt, wformat_args args) {
229
+ vprint(stdout, fmt, args);
230
+ }
231
+
232
+ template <typename... T>
233
+ void print(std::FILE* f, wformat_string<T...> fmt, T&&... args) {
234
+ return vprint(f, wstring_view(fmt), fmt::make_wformat_args(args...));
235
+ }
236
+
237
+ template <typename... T> void print(wformat_string<T...> fmt, T&&... args) {
238
+ return vprint(wstring_view(fmt), fmt::make_wformat_args(args...));
239
+ }
240
+
241
+ template <typename... T>
242
+ void println(std::FILE* f, wformat_string<T...> fmt, T&&... args) {
243
+ return print(f, L"{}\n", fmt::format(fmt, std::forward<T>(args)...));
244
+ }
245
+
246
+ template <typename... T> void println(wformat_string<T...> fmt, T&&... args) {
247
+ return print(L"{}\n", fmt::format(fmt, std::forward<T>(args)...));
248
+ }
249
+
250
+ /**
251
+ Converts *value* to ``std::wstring`` using the default format for type *T*.
252
+ */
253
+ template <typename T> inline auto to_wstring(const T& value) -> std::wstring {
254
+ return format(FMT_STRING(L"{}"), value);
255
+ }
256
+ FMT_END_EXPORT
257
+ FMT_END_NAMESPACE
258
+
259
+ #endif // FMT_XCHAR_H_
@@ -0,0 +1,43 @@
1
+ # This is a basic version file for the Config-mode of find_package().
2
+ # It is used by write_basic_package_version_file() as input file for configure_file()
3
+ # to create a version-file which can be installed along a config.cmake file.
4
+ #
5
+ # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
+ # the requested version string are exactly the same and it sets
7
+ # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version.
8
+ # The variable CVF_VERSION must be set before calling configure_file().
9
+
10
+ set(PACKAGE_VERSION "10.2.1")
11
+
12
+ if (PACKAGE_FIND_VERSION_RANGE)
13
+ # Package version must be in the requested version range
14
+ if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN)
15
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX)
16
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX)))
17
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
18
+ else()
19
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
20
+ endif()
21
+ else()
22
+ if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
23
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
24
+ else()
25
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
26
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
27
+ set(PACKAGE_VERSION_EXACT TRUE)
28
+ endif()
29
+ endif()
30
+ endif()
31
+
32
+
33
+ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
34
+ if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
35
+ return()
36
+ endif()
37
+
38
+ # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
39
+ if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
40
+ math(EXPR installedBits "8 * 8")
41
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
42
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
43
+ endif()
@@ -0,0 +1,31 @@
1
+
2
+ ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
3
+ ####### Any changes to this file will be overwritten by the next CMake run ####
4
+ ####### The input file was fmt-config.cmake.in ########
5
+
6
+ get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
7
+
8
+ macro(set_and_check _var _file)
9
+ set(${_var} "${_file}")
10
+ if(NOT EXISTS "${_file}")
11
+ message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
12
+ endif()
13
+ endmacro()
14
+
15
+ macro(check_required_components _NAME)
16
+ foreach(comp ${${_NAME}_FIND_COMPONENTS})
17
+ if(NOT ${_NAME}_${comp}_FOUND)
18
+ if(${_NAME}_FIND_REQUIRED_${comp})
19
+ set(${_NAME}_FOUND FALSE)
20
+ endif()
21
+ endif()
22
+ endforeach()
23
+ endmacro()
24
+
25
+ ####################################################################################
26
+
27
+ if (NOT TARGET fmt::fmt)
28
+ include(${CMAKE_CURRENT_LIST_DIR}/fmt-targets.cmake)
29
+ endif ()
30
+
31
+ check_required_components(fmt)
@@ -0,0 +1,19 @@
1
+ #----------------------------------------------------------------
2
+ # Generated CMake target import file for configuration "Release".
3
+ #----------------------------------------------------------------
4
+
5
+ # Commands may need to know the format version.
6
+ set(CMAKE_IMPORT_FILE_VERSION 1)
7
+
8
+ # Import target "fmt::fmt" for configuration "Release"
9
+ set_property(TARGET fmt::fmt APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
+ set_target_properties(fmt::fmt PROPERTIES
11
+ IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
12
+ IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libfmt.a"
13
+ )
14
+
15
+ list(APPEND _cmake_import_check_targets fmt::fmt )
16
+ list(APPEND _cmake_import_check_files_for_fmt::fmt "${_IMPORT_PREFIX}/lib/libfmt.a" )
17
+
18
+ # Commands beyond this point should not need to know the version.
19
+ set(CMAKE_IMPORT_FILE_VERSION)
@@ -0,0 +1,116 @@
1
+ # Generated by CMake
2
+
3
+ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
5
+ endif()
6
+ if(CMAKE_VERSION VERSION_LESS "3.0.0")
7
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
8
+ endif()
9
+ cmake_policy(PUSH)
10
+ cmake_policy(VERSION 3.0.0...3.30)
11
+ #----------------------------------------------------------------
12
+ # Generated CMake target import file.
13
+ #----------------------------------------------------------------
14
+
15
+ # Commands may need to know the format version.
16
+ set(CMAKE_IMPORT_FILE_VERSION 1)
17
+
18
+ # Protect against multiple inclusion, which would fail when already imported targets are added once more.
19
+ set(_cmake_targets_defined "")
20
+ set(_cmake_targets_not_defined "")
21
+ set(_cmake_expected_targets "")
22
+ foreach(_cmake_expected_target IN ITEMS fmt::fmt fmt::fmt-header-only)
23
+ list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
+ if(TARGET "${_cmake_expected_target}")
25
+ list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
26
+ else()
27
+ list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
28
+ endif()
29
+ endforeach()
30
+ unset(_cmake_expected_target)
31
+ if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
32
+ unset(_cmake_targets_defined)
33
+ unset(_cmake_targets_not_defined)
34
+ unset(_cmake_expected_targets)
35
+ unset(CMAKE_IMPORT_FILE_VERSION)
36
+ cmake_policy(POP)
37
+ return()
38
+ endif()
39
+ if(NOT _cmake_targets_defined STREQUAL "")
40
+ string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
41
+ string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
42
+ message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
43
+ endif()
44
+ unset(_cmake_targets_defined)
45
+ unset(_cmake_targets_not_defined)
46
+ unset(_cmake_expected_targets)
47
+
48
+
49
+ # Compute the installation prefix relative to this file.
50
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
51
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
52
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
53
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
54
+ if(_IMPORT_PREFIX STREQUAL "/")
55
+ set(_IMPORT_PREFIX "")
56
+ endif()
57
+
58
+ # Create imported target fmt::fmt
59
+ add_library(fmt::fmt STATIC IMPORTED)
60
+
61
+ set_target_properties(fmt::fmt PROPERTIES
62
+ INTERFACE_COMPILE_FEATURES "cxx_std_11"
63
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
64
+ )
65
+
66
+ # Create imported target fmt::fmt-header-only
67
+ add_library(fmt::fmt-header-only INTERFACE IMPORTED)
68
+
69
+ set_target_properties(fmt::fmt-header-only PROPERTIES
70
+ INTERFACE_COMPILE_DEFINITIONS "FMT_HEADER_ONLY=1"
71
+ INTERFACE_COMPILE_FEATURES "cxx_std_11"
72
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
73
+ )
74
+
75
+ # Load information for each installed configuration.
76
+ file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/fmt-targets-*.cmake")
77
+ foreach(_cmake_config_file IN LISTS _cmake_config_files)
78
+ include("${_cmake_config_file}")
79
+ endforeach()
80
+ unset(_cmake_config_file)
81
+ unset(_cmake_config_files)
82
+
83
+ # Cleanup temporary variables.
84
+ set(_IMPORT_PREFIX)
85
+
86
+ # Loop over all imported files and verify that they actually exist
87
+ foreach(_cmake_target IN LISTS _cmake_import_check_targets)
88
+ if(CMAKE_VERSION VERSION_LESS "3.28"
89
+ OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
90
+ OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
91
+ foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
92
+ if(NOT EXISTS "${_cmake_file}")
93
+ message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
94
+ \"${_cmake_file}\"
95
+ but this file does not exist. Possible reasons include:
96
+ * The file was deleted, renamed, or moved to another location.
97
+ * An install or uninstall procedure did not complete successfully.
98
+ * The installation package was faulty and contained
99
+ \"${CMAKE_CURRENT_LIST_FILE}\"
100
+ but not all the files it references.
101
+ ")
102
+ endif()
103
+ endforeach()
104
+ endif()
105
+ unset(_cmake_file)
106
+ unset("_cmake_import_check_files_for_${_cmake_target}")
107
+ endforeach()
108
+ unset(_cmake_target)
109
+ unset(_cmake_import_check_targets)
110
+
111
+ # This file does not depend on other imported targets which have
112
+ # been exported from the same project but in a separate export set.
113
+
114
+ # Commands beyond this point should not need to know the version.
115
+ set(CMAKE_IMPORT_FILE_VERSION)
116
+ cmake_policy(POP)
qupled/lib/libfmt.a ADDED
Binary file
@@ -0,0 +1,11 @@
1
+ prefix=/Users/runner/work/qupled/qupled/build/lib.macosx-11.0-arm64-cpython-313/qupled
2
+ exec_prefix=/Users/runner/work/qupled/qupled/build/lib.macosx-11.0-arm64-cpython-313/qupled
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include
5
+
6
+ Name: fmt
7
+ Description: A modern formatting library
8
+ Version: 10.2.1
9
+ Libs: -L${libdir} -lfmt
10
+ Cflags: -I${includedir}
11
+
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qupled
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: qupled: a package to investigate quantum plasmas via the dielectric formalism
5
5
  Author-email: Federico Lucco Castello <federico.luccocastello@gmail.com>
6
6
  License-Expression: GPL-3.0-or-later
@@ -0,0 +1,43 @@
1
+ qupled-1.3.3.dist-info/RECORD,,
2
+ qupled-1.3.3.dist-info/WHEEL,sha256=ZQJAUvKl3_G657Vy_VrVH7Krx2Keg1PVu64bdERsotU,136
3
+ qupled-1.3.3.dist-info/top_level.txt,sha256=HLJfvnCPZQVptCRuekWA_3Z98SMkCNCXViGiGh8VenA,7
4
+ qupled-1.3.3.dist-info/METADATA,sha256=lImlk_1KfuyVUJd49pedwgsrkqiMs1GuQUBhCYhyBbw,4559
5
+ qupled-1.3.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
6
+ qupled/qstls.py,sha256=m-8_81ZHzV9VKkckACGASqF0rx38ho3hSibK9FbVgXs,2465
7
+ qupled/rpa.py,sha256=RQ5wUTwoRnDqRzWO877OHgG2rcgYbSGBqn0PR3E4Uxw,613
8
+ qupled/database.py,sha256=IDgY6uvxdg5f5SVxnvWzgeB5Zi7mR6tHEFnU0m3Y_xI,25027
9
+ qupled/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
10
+ qupled/stlsiet.py,sha256=pYDCKh4wwfOvw7BanjfspNMAVp2xj4b2h09pm65jLgk,2982
11
+ qupled/native.cpython-313-darwin.so,sha256=wGkG7qIgNBBwy46T5f9LHOdYQiRUZsoLGJX3o2XWmAM,748816
12
+ qupled/qstlsiet.py,sha256=W_N7HQ4538HKR37CxJpxfYlqGM-rarFbVmRkP60-N90,1112
13
+ qupled/esa.py,sha256=ksFZJ3u7VF3OxffxAR7aGjZp8Zy2SeNQ8r2xFjjqQwc,613
14
+ qupled/mpi.py,sha256=Gbu6OlHvgA4q54pdIxFS16vNTIiKuF9o7aMuXka0tlg,1892
15
+ qupled/stls.py,sha256=B843hdgNAVr761Fo2lmzJSmdsPCu2LIoASNSh2UeKg4,2951
16
+ qupled/vsstls.py,sha256=y83EPv_v3DLVyydWi2IPnzYPOP3qUKzrvc9MrwxIMgU,7723
17
+ qupled/qvsstls.py,sha256=Jn98Ht9sK-dYIYvxhGfM5s-NIktjQcYGc7UD01hw0_8,1748
18
+ qupled/output.py,sha256=VP_7oKPuULYa0UB-wX_J_cLnGd2mZZxrYeeTpNY-iwE,3602
19
+ qupled/hf.py,sha256=2hKcYny6iLvVs5-M1NtmU6QAg_-u7RWZgS46OnhcWkc,10082
20
+ qupled/include/fmt/ostream.h,sha256=-DnzYoGzasnlFOTG2UT29mmaIQG7NunUgJqt5L0l_2E,7305
21
+ qupled/include/fmt/format-inl.h,sha256=w5DfUohEgLEx3_0XhCrz3ejq5s1_Gq_aMLY--jadbmE,73646
22
+ qupled/include/fmt/ranges.h,sha256=h6mRGvU1Jz6fm-0A1towg7ce7DSRyaVAEyWKiCNCtvM,24446
23
+ qupled/include/fmt/xchar.h,sha256=57OfmYZ5IUZ2BZZxuQhdKrJUljSsDkn4_5QCiho-adw,9962
24
+ qupled/include/fmt/core.h,sha256=FD1ZHfY9tbIHhuuMp1YBLgt-LG2rfwAkiOLHAeiXqR8,99931
25
+ qupled/include/fmt/chrono.h,sha256=o41sAvZOKvNoQ2mtTfariL4gOg1L379R_eVC-DVG6sk,74011
26
+ qupled/include/fmt/os.h,sha256=ibepg2W5ASfhHV6EwvpYRDCIFk7JyZziYu0wOnwZfu0,13291
27
+ qupled/include/fmt/color.h,sha256=AUydrMUh-cN2hGj0anFUXRDaHzxKi4JrhZa4oDWIp3o,24531
28
+ qupled/include/fmt/args.h,sha256=QYtkXpAiJ3pYWIQcB6PGUjcFPUUxGowJlXOsUXtD0cI,7458
29
+ qupled/include/fmt/printf.h,sha256=0SHCtbSPaN45bKOsX6MrfH3XfdjY6WhOhgSoh1bmgOU,20837
30
+ qupled/include/fmt/compile.h,sha256=aapCl7QvJzu_rPXJ7r5Laia1UtBvt0zRUcRyYMN7aFA,18974
31
+ qupled/include/fmt/format.h,sha256=Y71aNNE5v8oXJ7-6-UGvu1dRyHGtqqkbd9zlinByMHM,164588
32
+ qupled/include/fmt/std.h,sha256=BkZ7QF9AKR9A8mxuRsFddWJUWBw5dBOnfAKyt9Yty0E,16239
33
+ qupled/.dylibs/libgsl.28.dylib,sha256=rcTB771UsiEC1W_E5mVMYKo6G91p0OD5GaUssM8gfk8,2241424
34
+ qupled/.dylibs/libomp.dylib,sha256=Ic_m8yVNxvjHQ-51C9MX9Bzl0wJAEsBdkx4V0_P_z7Y,735616
35
+ qupled/.dylibs/libgslcblas.0.dylib,sha256=3ATUzchJ3MFYqtB5KC07P7gu8g-GTlQ62fUwbNrZqMY,239760
36
+ qupled/.dylibs/libSQLiteCpp.0.dylib,sha256=e2Cq30wVtP5ED40t6Rjj3mp1DfYh34mEO_fCsdt6QlQ,94368
37
+ qupled/.dylibs/libsqlite3.3.50.1.dylib,sha256=Ha5JC9TLmJglwOd4iBR8PACdcEZ5DW_iJwfNAGWQHBw,1241152
38
+ qupled/lib/libfmt.a,sha256=cMSDReKXG7q2GhxnXYEAub2raBxcDrCwB5fFzqEAXmE,214704
39
+ qupled/lib/pkgconfig/fmt.pc,sha256=oIUJk5rSV9wH2-UZA7sI6iHKKEDfCJcv8T6awxvCr4o,351
40
+ qupled/lib/cmake/fmt/fmt-targets-release.cmake,sha256=0hurnnAYtVc8r8yvaxkXAS5Op01RPnwKE6SFNOL1nYA,807
41
+ qupled/lib/cmake/fmt/fmt-config.cmake,sha256=Cd-Xn_HSZ-Lk5ZBDX8q49OQKSvnS0_k4r0-tb6G8LW4,999
42
+ qupled/lib/cmake/fmt/fmt-config-version.cmake,sha256=O6qhq-qInAAjYQ6y2xLwA_dJQ1CQDmj9zJYcmxuY6dU,1862
43
+ qupled/lib/cmake/fmt/fmt-targets.cmake,sha256=rRXShlK4V1JpSsyAg0wbt1HHWe1pap-HtHlniem2l0I,4464
@@ -1,24 +0,0 @@
1
- qupled-1.3.2.dist-info/RECORD,,
2
- qupled-1.3.2.dist-info/WHEEL,sha256=ZQJAUvKl3_G657Vy_VrVH7Krx2Keg1PVu64bdERsotU,136
3
- qupled-1.3.2.dist-info/top_level.txt,sha256=HLJfvnCPZQVptCRuekWA_3Z98SMkCNCXViGiGh8VenA,7
4
- qupled-1.3.2.dist-info/METADATA,sha256=b6IvBcRlZAtzvKpYTbKw6EpASENUMvRTXQNlrDjF4wI,4559
5
- qupled-1.3.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
6
- qupled/qstls.py,sha256=m-8_81ZHzV9VKkckACGASqF0rx38ho3hSibK9FbVgXs,2465
7
- qupled/rpa.py,sha256=RQ5wUTwoRnDqRzWO877OHgG2rcgYbSGBqn0PR3E4Uxw,613
8
- qupled/database.py,sha256=IDgY6uvxdg5f5SVxnvWzgeB5Zi7mR6tHEFnU0m3Y_xI,25027
9
- qupled/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
10
- qupled/stlsiet.py,sha256=pYDCKh4wwfOvw7BanjfspNMAVp2xj4b2h09pm65jLgk,2982
11
- qupled/native.cpython-313-darwin.so,sha256=GTlEvOOXYzZspZIy2UZ-43Om4XXg5I6H-n9rUkns3_c,691936
12
- qupled/qstlsiet.py,sha256=W_N7HQ4538HKR37CxJpxfYlqGM-rarFbVmRkP60-N90,1112
13
- qupled/esa.py,sha256=ksFZJ3u7VF3OxffxAR7aGjZp8Zy2SeNQ8r2xFjjqQwc,613
14
- qupled/mpi.py,sha256=Gbu6OlHvgA4q54pdIxFS16vNTIiKuF9o7aMuXka0tlg,1892
15
- qupled/stls.py,sha256=B843hdgNAVr761Fo2lmzJSmdsPCu2LIoASNSh2UeKg4,2951
16
- qupled/vsstls.py,sha256=y83EPv_v3DLVyydWi2IPnzYPOP3qUKzrvc9MrwxIMgU,7723
17
- qupled/qvsstls.py,sha256=Jn98Ht9sK-dYIYvxhGfM5s-NIktjQcYGc7UD01hw0_8,1748
18
- qupled/output.py,sha256=VP_7oKPuULYa0UB-wX_J_cLnGd2mZZxrYeeTpNY-iwE,3602
19
- qupled/hf.py,sha256=2hKcYny6iLvVs5-M1NtmU6QAg_-u7RWZgS46OnhcWkc,10082
20
- qupled/.dylibs/libgsl.28.dylib,sha256=rcTB771UsiEC1W_E5mVMYKo6G91p0OD5GaUssM8gfk8,2241424
21
- qupled/.dylibs/libomp.dylib,sha256=Ic_m8yVNxvjHQ-51C9MX9Bzl0wJAEsBdkx4V0_P_z7Y,735616
22
- qupled/.dylibs/libgslcblas.0.dylib,sha256=3ATUzchJ3MFYqtB5KC07P7gu8g-GTlQ62fUwbNrZqMY,239760
23
- qupled/.dylibs/libSQLiteCpp.0.dylib,sha256=e2Cq30wVtP5ED40t6Rjj3mp1DfYh34mEO_fCsdt6QlQ,94368
24
- qupled/.dylibs/libsqlite3.3.50.1.dylib,sha256=Ha5JC9TLmJglwOd4iBR8PACdcEZ5DW_iJwfNAGWQHBw,1241152
File without changes