From 0418c3def3da139c7a9333ad5765a19d1b455730 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 18:39:55 +0000 Subject: [PATCH] deps(deps): update p256 requirement from 0.13 to 0.14 Updates the requirements on [p256](https://github.com/RustCrypto/elliptic-curves) to permit the latest version. - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/primeorder/v0.13.0...p256/v0.14.0) --- updated-dependencies: - dependency-name: p256 dependency-version: 0.13.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- executor/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fa83586..cc3cfaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ pgx-oauth-gate = ["pg18"] [dependencies] jaws = { version = "1", default-features = false, features = ["p256"] } -p256 = { version = "0.13", features = ["ecdsa", "jwk"] } +p256 = { version = "0.14", features = ["ecdsa", "jwk"] } pgrx = { version = "0.19", default-features = false, optional = true } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 3e47472..3940f34 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -10,7 +10,7 @@ axum = "0.8" axum-server = { version = "0.8", features = ["tls-rustls"] } hmac = "0.12" jaws = { version = "1", default-features = false, features = ["p256"] } -p256 = { version = "0.13", features = ["ecdsa"] } +p256 = { version = "0.14", features = ["ecdsa"] } pggomtm = { path = "..", default-features = false, features = ["database-token-contract"] } serde = { version = "1", features = ["derive"] } serde_json = "1"