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
f50537c397
commit
522529c0a9
@ -38,31 +38,31 @@ CPMAddPackage(
|
||||
CPMAddPackage(
|
||||
NAME fmt
|
||||
GITHUB_REPOSITORY fmtlib/fmt
|
||||
GIT_TAG fd93b633b8e8e3a671f73abb03c8f88145ae7a7a
|
||||
GIT_TAG 9.1.0
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME spdlog
|
||||
GITHUB_REPOSITORY gabime/spdlog
|
||||
GIT_TAG b75edfafca581e33be29ab51b9546b2e955c2853
|
||||
GIT_TAG 81de01c02c2b49aa723806b0c1d557dd05721635
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME rapidjson
|
||||
GITHUB_REPOSITORY Tencent/rapidjson
|
||||
GIT_TAG 232389d4f1012dddec4ef84861face2d2ba85709
|
||||
GIT_TAG 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME cpr
|
||||
GITHUB_REPOSITORY libcpr/cpr
|
||||
GIT_TAG ab6ec0be798c511552e389276fe8e36e408ddf99
|
||||
GIT_TAG 7938bc7702130f989b76822909b57b829dcd806a
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
NAME range-v3
|
||||
GITHUB_REPOSITORY ericniebler/range-v3
|
||||
GIT_TAG 3d6e6f56e5e1a3ec4befcc7695504ea23e1d52ab
|
||||
GIT_TAG 689b4f3da769fb21dd7acf62550a038242d832e5
|
||||
EXCLUDE_FROM_ALL YES
|
||||
)
|
||||
CPMAddPackage(
|
||||
|
@ -35,7 +35,7 @@ endif
|
||||
|
||||
# Common dependencies
|
||||
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'])
|
||||
rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep'])
|
||||
cpr = dependency('cpr', version : ['>=1.7.0'], fallback : ['cpr', 'cpr_dep'])
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/libcpr/cpr.git
|
||||
revision = ab6ec0be798c511552e389276fe8e36e408ddf99
|
||||
revision = 7938bc7702130f989b76822909b57b829dcd806a
|
||||
|
||||
patch_directory = cpr
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/fmtlib/fmt.git
|
||||
revision = fd93b633b8e8e3a671f73abb03c8f88145ae7a7a
|
||||
revision = 9.1.0
|
||||
|
||||
patch_directory = fmt
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
project('cpr', 'cpp',
|
||||
version: '1.9.1',
|
||||
version: '1.9.2',
|
||||
license : 'MIT',
|
||||
default_options: ['cpp_std=c++20']
|
||||
)
|
||||
|
@ -1,5 +1,5 @@
|
||||
project('fmt', 'cpp',
|
||||
version : '8.1.1',
|
||||
version : '9.1.0',
|
||||
license : 'BSD',
|
||||
default_options : [
|
||||
'cpp_std=c++20',
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/ericniebler/range-v3.git
|
||||
revision = 3d6e6f56e5e1a3ec4befcc7695504ea23e1d52ab
|
||||
revision = 689b4f3da769fb21dd7acf62550a038242d832e5
|
||||
|
||||
patch_directory = range-v3
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/Tencent/rapidjson.git
|
||||
revision = 232389d4f1012dddec4ef84861face2d2ba85709
|
||||
revision = 22a62fcc2c2fa2418f5d358cdf65c1df73b418ae
|
||||
|
||||
patch_directory = rapidjson
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/gabime/spdlog.git
|
||||
revision = b75edfafca581e33be29ab51b9546b2e955c2853
|
||||
revision = 81de01c02c2b49aa723806b0c1d557dd05721635
|
||||
|
||||
patch_directory = spdlog
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user