Skip to content

Commit

Permalink
v2.107.0 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
jordy25519 committed Jan 22, 2025
1 parent 2e2719c commit 3d46ca3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: install libdrift_ffi_sys
run: |
curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.105.0/libdrift_ffi_sys.so -o libdrift_ffi_sys.so
curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.107.0/libdrift_ffi_sys.so -o libdrift_ffi_sys.so
sudo cp libdrift_ffi_sys.so /usr/lib/
- name: Build
run: |
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "drift-gateway"
version = "1.2.5"
version = "1.3.0"
edition = "2021"

[dependencies]
actix-web = "*"
argh = "*"
drift-rs = { git = "https://github.com/drift-labs/drift-rs", rev = "9e06e1b" }
drift-rs = { git = "https://github.com/drift-labs/drift-rs", tag = "v1.0.0-alpha.6" }
env_logger = "*"
futures-util = "*"
log = "*"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y libgcc1
WORKDIR /build
COPY . .
RUN rustup component add rustfmt && rustup install 1.76.0-x86_64-unknown-linux-gnu
RUN curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.105.0/libdrift_ffi_sys.so -o libdrift_ffi_sys.so && cp libdrift_ffi_sys.so /usr/local/lib
RUN curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.107.0/libdrift_ffi_sys.so -o libdrift_ffi_sys.so && cp libdrift_ffi_sys.so /usr/local/lib

# DEV: choose to build drift system libs from source or not
# a) default: use prebuilt lib (faster build time)
Expand Down

0 comments on commit 3d46ca3

Please sign in to comment.