From 33a50cc85fd09d6a9aaf97c7db8930f2155f7fb0 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 20 Nov 2024 20:13:28 +0000 Subject: [PATCH] Updated dependencies + pipelines --- .gitea/workflows/nightly.yaml | 2 ++ .gitea/workflows/test.yaml | 2 ++ Cargo.toml | 12 ++++++------ 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/nightly.yaml b/.gitea/workflows/nightly.yaml index a8de17d..8cdd2fb 100644 --- a/.gitea/workflows/nightly.yaml +++ b/.gitea/workflows/nightly.yaml @@ -10,6 +10,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo check test: diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 47e4520..38ef21e 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -9,6 +9,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo check test: diff --git a/Cargo.toml b/Cargo.toml index b0a0e71..d9d4211 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] async-trait = "0.1.74" -fancy-regex = "0.12.0" -hashbrown = "0.14.3" -itertools = "0.12.0" -strum = "0.25.0" -strum_macros = "0.25.3" -tokio = {version = "1.34.0", features = ["full"]} +fancy-regex = "0.14.0" +hashbrown = "0.15.1" +itertools = "0.13.0" +strum = "0.26.3" +strum_macros = "0.26.4" +tokio = {version = "1.41.1", features = ["full"]}