Skip to content

Commit 9aad416

Browse files
committed
Fixes
1 parent 9838be4 commit 9aad416

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
build: |-
3838
apt-get update -yq &&
3939
apt-get install -yq lld &&
40-
CC=x86_64-linux-gnu-gcc CXX=x86_64-linux-gnu-g++ yarn build --target x86_64-unknown-linux-gnu
40+
CMAKE_C_COMPILER=x86_64-linux-gnu-gcc CMAKE_CXX_COMPILER=x86_64-linux-gnu-g++ yarn build --target x86_64-unknown-linux-gnu
4141
- host: ubuntu-latest
4242
target: x86_64-unknown-linux-musl
4343
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
@@ -53,7 +53,7 @@ jobs:
5353
apt-get install -yq gcc-aarch64-linux-gnu &&
5454
ls -l /usr/bin &&
5555
rustup target add aarch64-unknown-linux-gnu &&
56-
CC=x86_64-linux-gnu-gcc RUSTC_LINKER=aarch64-linux-gnu-gcc yarn build --target aarch64-unknown-linux-gnu
56+
CC=x86_64-linux-gnu-gcc CMAKE_C_COMPILER=aarch64-linux-gnu-gcc CMAKE_CXX_COMPILER=aarch64-linux-gnu-g++ RUSTC_LINKER=aarch64-linux-gnu-gcc yarn build --target aarch64-unknown-linux-gnu
5757
- host: ubuntu-24.04-arm
5858
target: aarch64-unknown-linux-musl
5959
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2021"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
libsql = { git = "https://github.com/tursodatabase/libsql/", rev = "11a31116e6572dc2ccf6511ed1db0b53ab402662", features = ["encryption"] }
13+
libsql = { git = "https://github.com/tursodatabase/libsql/", rev = "cc888c417abbcc83e6f8647d6f12bdfb9bb35f5c", features = ["encryption"] }
1414
napi = { version = "2", default-features = false, features = ["napi6", "tokio_rt", "async"] }
1515
napi-derive = "2"
1616
once_cell = "1.18.0"

0 commit comments

Comments
 (0)