From 0e47622e6413bb8ae21dc929d4cbb193e6d7a7cc Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 7 Jun 2024 11:01:21 -0700 Subject: [PATCH] Update CI script --- .github/workflows/ci-rust.yml | 15 --------------- src-tauri/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index f01fc2d7..78ebe1a9 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -45,19 +45,4 @@ jobs: run: | cargo fmt --all -- --check cargo clippy -- -D warnings - - name: Install cargo check tools - run: | - cargo install --locked cargo-deny || true - cargo install --locked cargo-outdated || true - cargo install --locked cargo-udeps || true - cargo install --locked cargo-audit || true - cargo install --locked cargo-pants || true - - name: Check - run: | - cargo deny check - cargo outdated --exit-code 1 - cargo udeps - rm -rf ~/.cargo/advisory-db - cargo audit - cargo pants - run: cargo test --all diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e9f2d8fb..cc605dbe 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -42,7 +42,7 @@ reqwest = { version = "0.11.23", features = ["multipart", "cookies", "gzip", "br reqwest_cookie_store = "0.6.0" serde = { version = "1.0.198", features = ["derive"] } serde_json = { version = "1.0.116", features = ["raw_value"] } -serde_yaml = "0.9.34+deprecated" +serde_yaml = "0.9.34" sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio-rustls", "json", "chrono", "time"] } tauri = { version = "2.0.0-beta", features = ["devtools", "protocol-asset"] } tauri-plugin-clipboard-manager = "2.1.0-beta"