From 05adc82866a6b7cee788fd00c2a11f0b353367f0 Mon Sep 17 00:00:00 2001 From: Berend Sliedrecht Date: Mon, 6 Nov 2023 10:27:48 +0100 Subject: [PATCH] try building with lower sqlx version Signed-off-by: Berend Sliedrecht --- .github/workflows/build.yml | 4 ++-- askar-storage/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb2e8717..d97aaf80 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -379,7 +379,7 @@ jobs: - name: Build run: | - cargo build --lib --release --target ${{matrix.target}} --no-default-features --features=ffi,logger,migration,sqlite + cargo build --lib --release --target ${{matrix.target}} - name: Upload artifacts uses: actions/upload-artifact@v3 @@ -423,7 +423,7 @@ jobs: - name: Build run: | cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross - cross build --lib --release --target ${{matrix.target}} --no-default-features --features=ffi,logger,migration,sqlite + cross build --lib --release --target ${{matrix.target}} - name: Upload artifacts diff --git a/askar-storage/Cargo.toml b/askar-storage/Cargo.toml index 14d80863..ae78dd79 100644 --- a/askar-storage/Cargo.toml +++ b/askar-storage/Cargo.toml @@ -56,7 +56,7 @@ default-features = false features = ["alloc", "argon2", "chacha", "std_rng"] [dependencies.sqlx] -version = "0.7.1" +version = "0.6.3" default-features = false features = ["chrono", "runtime-tokio"] optional = true