diff --git a/Cargo.lock b/Cargo.lock index 2b312fa..e7fa2a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,9 +223,9 @@ version = "0.0.0" [[package]] name = "k256" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" dependencies = [ "cfg-if", "elliptic-curve", diff --git a/jose-jwk/Cargo.toml b/jose-jwk/Cargo.toml index 73334d0..9c7259f 100644 --- a/jose-jwk/Cargo.toml +++ b/jose-jwk/Cargo.toml @@ -31,7 +31,7 @@ zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] } p256 = { version = "0.13.2", default-features = false, optional = true, features = ["arithmetic"] } p384 = { version = "0.13.0", default-features = false, optional = true, features = ["arithmetic"] } p521 = { version = "0.13.3", default-features = false, optional = true, features = ["arithmetic"]} -k256 = { version = "0.13.3", default-features = false, optional = true, features = ["arithmetic"]} +k256 = { version = "0.13.4", default-features = false, optional = true, features = ["arithmetic"]} rsa = { version = "0.9", default-features = false, optional = true } url = { version = "2.4.1", default-features = false, optional = true, features = ["serde"] }