mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 14:32:22 +08:00
♻ update deps
This commit is contained in:
parent
dcad598b02
commit
2fb198c0f4
@ -38,26 +38,26 @@ CPMAddPackage(
|
||||
CPMAddPackage(
|
||||
NAME fmt
|
||||
GITHUB_REPOSITORY fmtlib/fmt
|
||||
GIT_TAG 9.1.0
|
||||
GIT_TAG 10.0.0
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME spdlog
|
||||
GITHUB_REPOSITORY gabime/spdlog
|
||||
GIT_TAG edc51df1bdad8667b628999394a1e7c4dc6f3658
|
||||
GIT_TAG 31cf79a70dfa61a4b2b7509eecca6a3b269bfc4a
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME rapidjson
|
||||
GITHUB_REPOSITORY Tencent/rapidjson
|
||||
GIT_TAG 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
|
||||
GIT_TAG 973dc9c06dcd3d035ebd039cfb9ea457721ec213
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
if(NOT ENABLE_DEVENV)
|
||||
CPMAddPackage(
|
||||
NAME cpr
|
||||
GITHUB_REPOSITORY libcpr/cpr
|
||||
GIT_TAG 142a496e49bc71dc1be85a3ce47bb25573670000
|
||||
GIT_TAG 1.10.4
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
endif()
|
||||
@ -70,7 +70,7 @@ CPMAddPackage(
|
||||
CPMAddPackage(
|
||||
NAME ctre
|
||||
GITHUB_REPOSITORY hanickadot/compile-time-regular-expressions
|
||||
GIT_TAG v3.7.1
|
||||
GIT_TAG v3.7.2
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
|
||||
|
@ -51,7 +51,7 @@ add_global_arguments('-DINSTALLER_VERSION="' + git_version + '"', language : 'cp
|
||||
|
||||
# Common dependencies
|
||||
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'])
|
||||
rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep'])
|
||||
ranges = dependency('range-v3', version : ['>=0.11.0'], fallback : ['range-v3', 'range_dep'])
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/libcpr/cpr.git
|
||||
revision = 142a496e49bc71dc1be85a3ce47bb25573670000
|
||||
revision = 1.10.4
|
||||
|
||||
patch_directory = cpr
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/hanickadot/compile-time-regular-expressions.git
|
||||
revision = v3.7.1
|
||||
revision = v3.7.2
|
||||
|
||||
patch_directory = ctre
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/fmtlib/fmt.git
|
||||
revision = 9.1.0
|
||||
revision = 10.0.0
|
||||
|
||||
patch_directory = fmt
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
project('cpr', 'cpp',
|
||||
version: '1.9.2',
|
||||
version: '1.10.4',
|
||||
license : 'MIT',
|
||||
default_options: ['cpp_std=c++20']
|
||||
)
|
||||
@ -14,6 +14,7 @@ cpr_lib = static_library('cpr',
|
||||
'cpr/async.cpp',
|
||||
'cpr/auth.cpp',
|
||||
'cpr/bearer.cpp',
|
||||
'cpr/callback.cpp',
|
||||
'cpr/cert_info.cpp',
|
||||
'cpr/cookies.cpp',
|
||||
'cpr/cprtypes.cpp',
|
||||
|
@ -1,4 +1,4 @@
|
||||
project('ctre', 'cpp', version: '3.7.1',
|
||||
project('ctre', 'cpp', version: '3.7.2',
|
||||
license: 'Apache-2.0')
|
||||
|
||||
ctre_inc = include_directories('include')
|
||||
|
@ -1,5 +1,5 @@
|
||||
project('fmt', 'cpp',
|
||||
version : '9.1.0',
|
||||
version : '10.0.0',
|
||||
license : 'BSD',
|
||||
default_options : [
|
||||
'cpp_std=c++20',
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/Tencent/rapidjson.git
|
||||
revision = 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
|
||||
revision = 973dc9c06dcd3d035ebd039cfb9ea457721ec213
|
||||
|
||||
patch_directory = rapidjson
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/gabime/spdlog.git
|
||||
revision = edc51df1bdad8667b628999394a1e7c4dc6f3658
|
||||
revision = 31cf79a70dfa61a4b2b7509eecca6a3b269bfc4a
|
||||
|
||||
patch_directory = spdlog
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user