From 502514ff955a8882bd05604696b650e82c9085eb Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Wed, 11 Dec 2024 11:58:49 -0600 Subject: [PATCH 1/2] Update validator to 0.19, to update idna to ^1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 16e13cd..ba6bf4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ serde_json = { version = "1", default-features = false } base64 = "0.22" biscuit = "0.7" thiserror = "1" -validator = { version = "0.18", features = ["derive"] } +validator = { version = "0.19", features = ["derive"] } mime = "0.3" [dependencies.url] From 5e90af511fc61a3a5a4a6ccc5680d767f30eba4c Mon Sep 17 00:00:00 2001 From: Alexander Korolev Date: Sun, 22 Dec 2024 10:16:27 +0100 Subject: [PATCH 2/2] update min rust-version to 1.71.1 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9325dfd..e6049ca 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@1.71.1 - name: Build run: cargo build - name: Run tests diff --git a/Cargo.toml b/Cargo.toml index ba6bf4e..8363f8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["authentication", "authorization", "oauth", "openid", "uma2"] license = "Unlicense OR MIT" readme = "README.md" repository = "https://github.com/kilork/openid" -rust-version = "1.70" +rust-version = "1.71.1" [features] default = ["native-tls"]