File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,14 +48,12 @@ jobs:
4848 path : |
4949 ${{ github.workspace }}/vcpkg/installed
5050 ${{ github.workspace }}/vcpkg-binary-cache
51- key : vcpkg-${{ runner.os }}-${{ hashFiles('CMakeLists.txt', 'overlay-ports/**' ) }}
51+ key : vcpkg-${{ runner.os }}-${{ hashFiles('CMakeLists.txt') }}
5252 restore-keys : vcpkg-${{ runner.os }}-
5353
5454 - name : Install dependencies
5555 run : |
56- "$VCPKG_ROOT/vcpkg" install nlohmann-json openssl gtest slick-net \
57- --overlay-ports=${{ github.workspace }}/overlay-ports
58-
56+ "$VCPKG_ROOT/vcpkg" install nlohmann-json openssl gtest slick-net
5957 - name : Configure
6058 run : |
6159 cmake -S . -B build \
Original file line number Diff line number Diff line change @@ -68,3 +68,5 @@ vcpkg_installed/
6868Testing /
6969.cache /
7070test_results.json
71+
72+ .vscode /
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88---
99
10- ## [ 0.1.0] — 2026-06-01
10+ ## [ 0.1.0] — 2026-06-06
1111
1212### Added
1313
Original file line number Diff line number Diff line change @@ -10,7 +10,19 @@ endif()
1010
1111find_package (nlohmann_json CONFIG REQUIRED )
1212find_package (OpenSSL REQUIRED )
13- find_package (slick-net CONFIG REQUIRED )
13+
14+ find_package (slick-net 2.1.0 CONFIG QUIET )
15+ if (NOT slick-net_FOUND)
16+ message (STATUS "Fetching slick-net..." )
17+ FetchContent_Declare (
18+ slick-net
19+ GIT_REPOSITORY https://github.com/SlickQuant/slick-net.git
20+ GIT_TAG v2.1.0
21+ )
22+ FetchContent_MakeAvailable (slick-net)
23+ else ()
24+ message (STATUS "Found slick-net: ${slick-net_DIR} " )
25+ endif ()
1426
1527add_library (hyperliquid
1628 src/api.cpp
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments