♻ update deps

This commit is contained in:
Vladislav Nepogodin 2022-09-12 02:20:08 +04:00
parent f50537c397
commit 522529c0a9
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9
9 changed files with 13 additions and 13 deletions

View File

@ -38,31 +38,31 @@ CPMAddPackage(
CPMAddPackage( CPMAddPackage(
NAME fmt NAME fmt
GITHUB_REPOSITORY fmtlib/fmt GITHUB_REPOSITORY fmtlib/fmt
GIT_TAG fd93b633b8e8e3a671f73abb03c8f88145ae7a7a GIT_TAG 9.1.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 b75edfafca581e33be29ab51b9546b2e955c2853 GIT_TAG 81de01c02c2b49aa723806b0c1d557dd05721635
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(
NAME rapidjson NAME rapidjson
GITHUB_REPOSITORY Tencent/rapidjson GITHUB_REPOSITORY Tencent/rapidjson
GIT_TAG 232389d4f1012dddec4ef84861face2d2ba85709 GIT_TAG 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(
NAME cpr NAME cpr
GITHUB_REPOSITORY libcpr/cpr GITHUB_REPOSITORY libcpr/cpr
GIT_TAG ab6ec0be798c511552e389276fe8e36e408ddf99 GIT_TAG 7938bc7702130f989b76822909b57b829dcd806a
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(
NAME range-v3 NAME range-v3
GITHUB_REPOSITORY ericniebler/range-v3 GITHUB_REPOSITORY ericniebler/range-v3
GIT_TAG 3d6e6f56e5e1a3ec4befcc7695504ea23e1d52ab GIT_TAG 689b4f3da769fb21dd7acf62550a038242d832e5
EXCLUDE_FROM_ALL YES EXCLUDE_FROM_ALL YES
) )
CPMAddPackage( CPMAddPackage(

View File

@ -35,7 +35,7 @@ endif
# 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 : ['>=8.0.0'], fallback : ['fmt', 'fmt_dep']) fmt = dependency('fmt', version : ['>=9.1.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'])
cpr = dependency('cpr', version : ['>=1.7.0'], fallback : ['cpr', 'cpr_dep']) cpr = dependency('cpr', version : ['>=1.7.0'], fallback : ['cpr', 'cpr_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 = ab6ec0be798c511552e389276fe8e36e408ddf99 revision = 7938bc7702130f989b76822909b57b829dcd806a
patch_directory = cpr patch_directory = cpr

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 = fd93b633b8e8e3a671f73abb03c8f88145ae7a7a revision = 9.1.0
patch_directory = fmt patch_directory = fmt

View File

@ -1,5 +1,5 @@
project('cpr', 'cpp', project('cpr', 'cpp',
version: '1.9.1', version: '1.9.2',
license : 'MIT', license : 'MIT',
default_options: ['cpp_std=c++20'] default_options: ['cpp_std=c++20']
) )

View File

@ -1,5 +1,5 @@
project('fmt', 'cpp', project('fmt', 'cpp',
version : '8.1.1', version : '9.1.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/ericniebler/range-v3.git url = https://github.com/ericniebler/range-v3.git
revision = 3d6e6f56e5e1a3ec4befcc7695504ea23e1d52ab revision = 689b4f3da769fb21dd7acf62550a038242d832e5
patch_directory = range-v3 patch_directory = range-v3

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 = 232389d4f1012dddec4ef84861face2d2ba85709 revision = 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
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 = b75edfafca581e33be29ab51b9546b2e955c2853 revision = 81de01c02c2b49aa723806b0c1d557dd05721635
patch_directory = spdlog patch_directory = spdlog