update some providers (#54)

* remove sendHttpRequest

* update some providers
This commit is contained in:
Dmitry Afanasyev 2023-11-07 11:44:51 +03:00 committed by GitHub
parent 2722e91428
commit 99d2a21ad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 386 additions and 715 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ add_repositories("my_private_repo https://github.com/fantasy-peak/xmake-repo.git
add_requires("openssl", {system = false})
add_requires("zlib", {system = false})
add_requires("yaml_cpp_struct", "nlohmann_json", "spdlog", "inja", "plusaes")
add_requires("yaml_cpp_struct", "nlohmann_json", "spdlog", "inja", "plusaes", "concurrentqueue")
add_requires("boost", {configs = {iostreams = true}})
set_languages("c++23")
@ -17,6 +17,6 @@ add_includedirs("include")
target("cpp-freegpt-webui")
set_kind("binary")
add_files("src/*.cpp")
add_packages("openssl", "yaml_cpp_struct", "nlohmann_json", "spdlog", "boost", "inja", "plusaes", "zlib")
add_packages("openssl", "yaml_cpp_struct", "nlohmann_json", "spdlog", "boost", "inja", "plusaes", "zlib", "concurrentqueue")
add_syslinks("pthread", "curl-impersonate-chrome")
target_end()