From 87d90cc0d000e8240f6d0744ccf53365bc7798b7 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 20 Jul 2024 00:26:52 +0100 Subject: [PATCH] ci: fix diesel example --- .github/workflows/ci.yml | 4 ++-- auth/simple-auth-server/README.md | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a743c5ce..4e8a1825 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: redis-version: 6 - name: cargo test - run: cargo test --workspace --all-features --no-fail-fast --exclude=diesel-example -- --nocapture + run: cargo test --workspace --all-features --no-fail-fast --exclude=db-diesel -- --nocapture timeout-minutes: 30 - name: cargo test (diesel) @@ -60,7 +60,7 @@ jobs: cd databases/diesel diesel migration run chmod a+rwx test.db - cargo test -p=diesel-example --no-fail-fast -- --nocapture + cargo test -p=db-diesel --no-fail-fast -- --nocapture timeout-minutes: 10 - name: Install cargo-ci-cache-clean diff --git a/auth/simple-auth-server/README.md b/auth/simple-auth-server/README.md index a16def22..0c7270a4 100644 --- a/auth/simple-auth-server/README.md +++ b/auth/simple-auth-server/README.md @@ -29,13 +29,12 @@ - [r2d2](https://crates.io/crates/r2d2) // A generic connection pool. - [serde](https://crates.io/crates/serde) // A generic serialization/deserialization framework. - [serde_json](https://crates.io/crates/serde_json) // A JSON serialization file format. -- [serde_derive](https://crates.io/crates/serde_derive) // Macros 1.1 implementation of #[derive(Serialize, Deserialize)]. - [sparklepost](https://crates.io/crates/sparklepost) // Rust bindings for Sparkpost email API. - [uuid](https://crates.io/crates/uuid) // A library to generate and parse UUIDs. Read the full tutorial series on [gill.net.in](https://gill.net.in) -- [Auth Web Microservice with Rust using Actix Web v2 - Complete Tutorial](https://gill.net.in/posts/auth-microservice-rust-actix-web1.0-diesel-complete-tutorial/) +- [Auth Web Microservice with Rust using Actix Web v4 - Complete Tutorial](https://gill.net.in/posts/auth-microservice-rust-actix-web1.0-diesel-complete-tutorial/) ### Dependencies