From 9c8315bfef523624eb80dd59dc2747df9c278b99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 06:55:23 +0000 Subject: [PATCH] build(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.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e918b8f..bfa1edc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ quick-xml = "0.38" rsa = { version = "0.9", optional = true } sha1 = { version = "0.10", features = ["oid"], optional = true } sha2 = { version = "0.10", features = ["oid"], optional = true } -p256 = { version = "0.13", features = ["ecdsa"], optional = true } +p256 = { version = "0.14", features = ["ecdsa"], optional = true } p384 = { version = "0.13", features = ["ecdsa"], optional = true } p521 = { version = "0.13", features = ["ecdsa"], optional = true } signature = { version = "3", optional = true }