Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2
with:
rust-version: "1.89"
rust-version: "1.90"

cargo-fmt-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update the Rust toolchain
run: rustup default 1.89 && rustup component add rustfmt && rustup component add clippy && rustc --version
run: rustup default 1.90 && rustup component add rustfmt && rustup component add clippy && rustc --version
- name: Cargo formatting check
run: cargo fmt --all -- --check
- name: Cargo clippy check
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Build and run the docker services
run: docker compose up -d
- name: Update the Rust toolchain
run: rustup default 1.89 && rustc --version
run: rustup default 1.90 && rustc --version
- name: Run tests
run: cargo test --verbose

Expand All @@ -45,6 +45,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Update the Rust toolchain
run: rustup default 1.89 && rustc --version
run: rustup default 1.90 && rustc --version
- name: Build
run: cargo build --verbose
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 0.1.6 (2025-09-22)

* refactor: upgrade to Rust v1.90
* chore: updated dependencies

## 0.1.5 (2025-09-17)

* security fix: tracing-subscriber upgraded to prevent CVE-2025-58160
Expand Down
47 changes: 27 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "axum-web"
version = "0.1.5"
version = "0.1.6"
edition = "2024"
authors = ["Sheroz Khaydarov"]
description = "A sample starter project for building REST API Web service in Rust using axum, JWT, SQLx, PostgreSQL, and Redis"
readme = "README.md"
repository = "https://github.com/sheroz/axum-web"
license = "MIT"
rust-version = "1.89"
rust-version = "1.90"

[dependencies]
dotenvy = "0.15"
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
msrv = "1.89"
msrv = "1.90"

disallowed-types = [
{ path = "std::collections::LinkedList", reason = "LinkedList as a slow and almost never needed" },
Expand Down