Skip to content

Commit

Permalink
Merge pull request #53 from unum-cloud/22-bug-cannot-call-the-server
Browse files Browse the repository at this point in the history
Upgrade: `simdjson`
  • Loading branch information
ashvardanian authored Mar 29, 2023
2 parents cbf7318 + 89a42b7 commit f8dbe1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ include(ExternalProject)

FetchContent_Declare(
simdjson
GIT_REPOSITORY https://github.com/ashvardanian/simdjson
GIT_REPOSITORY https://github.com/simdjson/simdjson
GIT_TAG v3.1.6
GIT_SHALLOW 1
)
FetchContent_MakeAvailable(simdjson)
Expand All @@ -71,8 +72,9 @@ if (${UJRPC_BUILD_BENCHMARKS})
set(BENCHMARK_USE_BUNDLED_GTEST ON)
FetchContent_Declare(
benchmark
GIT_REPOSITORY https://github.com/google/benchmark.git
GIT_REPOSITORY https://github.com/google/benchmark
GIT_TAG v1.7.0
GIT_SHALLOW 1
)
FetchContent_MakeAvailable(benchmark)
include_directories(${benchmark_SOURCE_DIR}/include)
Expand All @@ -83,6 +85,7 @@ FetchContent_Declare(
cxxopts
GIT_REPOSITORY https://github.com/jarro2783/cxxopts
GIT_TAG v3.0.0
GIT_SHALLOW 1
)
FetchContent_MakeAvailable(cxxopts)
include_directories(${cxxopts_SOURCE_DIR}/include)
Expand All @@ -93,6 +96,7 @@ include_directories(${cxxopts_SOURCE_DIR}/include)
FetchContent_Declare(
picohttpparser
GIT_REPOSITORY https://github.com/unum-cloud/picohttpparser
GIT_SHALLOW 1
)
FetchContent_MakeAvailable(picohttpparser)
include_directories(${picohttpparser_SOURCE_DIR})
Expand All @@ -101,6 +105,7 @@ include_directories(${picohttpparser_SOURCE_DIR})
FetchContent_Declare(
tb64
GIT_REPOSITORY https://github.com/unum-cloud/Turbo-Base64/
GIT_SHALLOW 1
)
FetchContent_MakeAvailable(tb64)
include_directories(${tb64_SOURCE_DIR})
Expand All @@ -112,6 +117,7 @@ if(LINUX)
liburing-ep
GIT_REPOSITORY https://github.com/axboe/liburing
GIT_TAG liburing-2.3
GIT_SHALLOW 1
PREFIX ${CMAKE_BINARY_DIR}/_deps/
SOURCE_DIR ${URING_DIR}
CONFIGURE_COMMAND echo Configuring LibUring && cd ${URING_DIR} && ./configure --cc=${CMAKE_C_COMPILER} --cxx=${CMAKE_CXX_COMPILER};
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.5
0.2.6

0 comments on commit f8dbe1a

Please sign in to comment.