Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
z-Wind committed Aug 12, 2024
1 parent f638bb4 commit 6b8ec6f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
- name: Rust Cache dependencies
uses: Swatinem/rust-cache@v2

- name: install NASM for window
if: matrix.os == 'windows-latest'
uses: ilammy/setup-nasm@v1

- name: Clippy
run: cargo clippy --all-features --all-targets -- -D warnings

Expand All @@ -61,6 +65,10 @@ jobs:
- name: Install latest nextest release
uses: taiki-e/install-action@nextest

- name: install NASM for window
if: matrix.os == 'windows-latest'
uses: ilammy/setup-nasm@v1

- name: Run tests
run: cargo nextest run --config-file ${{ github.workspace }}/.github/nextest.toml --profile ci

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.8", features = ["chrono_0_4"] }
serde_with = { version = "3.9", features = ["chrono_0_4"] }
serde_repr = "0.1"
governor = "0.6"
chrono = { version = "0.4", features = ["serde", "clock"] }
Expand All @@ -35,7 +35,7 @@ dirs = "5.0"
url = "2.5"
http = "1.1"
axum = { version = "0.7", features = ["macros"] }
axum-server = { version = "0.6", features = ["tls-rustls"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
thiserror = "1.0"
open = "5"
async-channel = "2.3"
Expand All @@ -45,7 +45,7 @@ derive_builder = "0.20"
[dev-dependencies]
tower = { version = "0.4", features = ["util"] }
serde_test = "1.0"
mockito = "1.4"
mockito = "1.5"
pretty_assertions = "1.4"
assert-json-diff = "2.0"
float-cmp = "0.9"
Expand Down

0 comments on commit 6b8ec6f

Please sign in to comment.