♻ update deps

This commit is contained in:
Vladislav Nepogodin 2023-06-04 02:59:23 +04:00
parent dcad598b02
commit 2fb198c0f4
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9
10 changed files with 15 additions and 14 deletions

View File

@ -38,26 +38,26 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME fmt NAME fmt
GITHUB_REPOSITORY fmtlib/fmt GITHUB_REPOSITORY fmtlib/fmt
GIT_TAG 9.1.0 GIT_TAG 10.0.0
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(
NAME spdlog NAME spdlog
GITHUB_REPOSITORY gabime/spdlog GITHUB_REPOSITORY gabime/spdlog
GIT_TAG edc51df1bdad8667b628999394a1e7c4dc6f3658 GIT_TAG 31cf79a70dfa61a4b2b7509eecca6a3b269bfc4a
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(
NAME rapidjson NAME rapidjson
GITHUB_REPOSITORY Tencent/rapidjson GITHUB_REPOSITORY Tencent/rapidjson
GIT_TAG 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae GIT_TAG 973dc9c06dcd3d035ebd039cfb9ea457721ec213
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
if(NOT ENABLE_DEVENV) if(NOT ENABLE_DEVENV)
CPMAddPackage( CPMAddPackage(
NAME cpr NAME cpr
GITHUB_REPOSITORY libcpr/cpr GITHUB_REPOSITORY libcpr/cpr
GIT_TAG 142a496e49bc71dc1be85a3ce47bb25573670000 GIT_TAG 1.10.4
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
endif() endif()
@ -70,7 +70,7 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME ctre NAME ctre
GITHUB_REPOSITORY hanickadot/compile-time-regular-expressions GITHUB_REPOSITORY hanickadot/compile-time-regular-expressions
GIT_TAG v3.7.1 GIT_TAG v3.7.2
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )

View File

@ -51,7 +51,7 @@ add_global_arguments('-DINSTALLER_VERSION="' + git_version + '"', language : 'cp
# Common dependencies # Common dependencies
spdlog = dependency('spdlog', version : ['>=1.9.2'], fallback : ['spdlog', 'spdlog_dep']) spdlog = dependency('spdlog', version : ['>=1.9.2'], fallback : ['spdlog', 'spdlog_dep'])
fmt = dependency('fmt', version : ['>=9.1.0'], fallback : ['fmt', 'fmt_dep']) fmt = dependency('fmt', version : ['>=10.0.0'], fallback : ['fmt', 'fmt_dep'])
ftxui = dependency('ftxui', modules : ['ftxui::screen', 'ftxui::dom', 'ftxui::component'], fallback : ['ftxui', 'ftxui_dep']) ftxui = dependency('ftxui', modules : ['ftxui::screen', 'ftxui::dom', 'ftxui::component'], fallback : ['ftxui', 'ftxui_dep'])
rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep']) rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep'])
ranges = dependency('range-v3', version : ['>=0.11.0'], fallback : ['range-v3', 'range_dep']) ranges = dependency('range-v3', version : ['>=0.11.0'], fallback : ['range-v3', 'range_dep'])

View File

@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/libcpr/cpr.git url = https://github.com/libcpr/cpr.git
revision = 142a496e49bc71dc1be85a3ce47bb25573670000 revision = 1.10.4
patch_directory = cpr patch_directory = cpr

View File

@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/hanickadot/compile-time-regular-expressions.git url = https://github.com/hanickadot/compile-time-regular-expressions.git
revision = v3.7.1 revision = v3.7.2
patch_directory = ctre patch_directory = ctre

View File

@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/fmtlib/fmt.git url = https://github.com/fmtlib/fmt.git
revision = 9.1.0 revision = 10.0.0
patch_directory = fmt patch_directory = fmt

View File

@ -1,5 +1,5 @@
project('cpr', 'cpp', project('cpr', 'cpp',
version: '1.9.2', version: '1.10.4',
license : 'MIT', license : 'MIT',
default_options: ['cpp_std=c++20'] default_options: ['cpp_std=c++20']
) )
@ -14,6 +14,7 @@ cpr_lib = static_library('cpr',
'cpr/async.cpp', 'cpr/async.cpp',
'cpr/auth.cpp', 'cpr/auth.cpp',
'cpr/bearer.cpp', 'cpr/bearer.cpp',
'cpr/callback.cpp',
'cpr/cert_info.cpp', 'cpr/cert_info.cpp',
'cpr/cookies.cpp', 'cpr/cookies.cpp',
'cpr/cprtypes.cpp', 'cpr/cprtypes.cpp',

View File

@ -1,4 +1,4 @@
project('ctre', 'cpp', version: '3.7.1', project('ctre', 'cpp', version: '3.7.2',
license: 'Apache-2.0') license: 'Apache-2.0')
ctre_inc = include_directories('include') ctre_inc = include_directories('include')

View File

@ -1,5 +1,5 @@
project('fmt', 'cpp', project('fmt', 'cpp',
version : '9.1.0', version : '10.0.0',
license : 'BSD', license : 'BSD',
default_options : [ default_options : [
'cpp_std=c++20', 'cpp_std=c++20',

View File

@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/Tencent/rapidjson.git url = https://github.com/Tencent/rapidjson.git
revision = 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae revision = 973dc9c06dcd3d035ebd039cfb9ea457721ec213
patch_directory = rapidjson patch_directory = rapidjson

View File

@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/gabime/spdlog.git url = https://github.com/gabime/spdlog.git
revision = edc51df1bdad8667b628999394a1e7c4dc6f3658 revision = 31cf79a70dfa61a4b2b7509eecca6a3b269bfc4a
patch_directory = spdlog patch_directory = spdlog