diff --git a/Cargo.lock b/Cargo.lock index 1fd4cd71..f5343e39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,6 +298,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256" dependencies = [ "aws-lc-sys", + "untrusted 0.7.1", "zeroize", ] @@ -1225,6 +1226,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer", + "const-oid", "crypto-common", "subtle", ] @@ -2306,12 +2308,16 @@ version = "10.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1" dependencies = [ + "aws-lc-rs", "base64", + "ed25519-dalek", "getrandom 0.2.17", + "hmac", "js-sys", "pem", "serde", "serde_json", + "sha2", "signature", "simple_asn1", ] @@ -3747,7 +3753,7 @@ dependencies = [ "cfg-if", "getrandom 0.2.17", "libc", - "untrusted", + "untrusted 0.9.0", "windows-sys 0.52.0", ] @@ -4094,7 +4100,7 @@ dependencies = [ "aws-lc-rs", "ring", "rustls-pki-types", - "untrusted", + "untrusted 0.9.0", ] [[package]] @@ -5517,6 +5523,12 @@ version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index c4969e65..c7e5482a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -231,7 +231,13 @@ rev = "93795449913f65ab533b7fa482333eef63fc3ae0" [workspace.dependencies.jsonwebtoken] version = "10.3" default-features = false -features = ["use_pem"] +features = [ + "aws_lc_rs", + "ed25519-dalek", + "hmac", + "sha2", + "use_pem", +] [workspace.dependencies.ldap3] git = "https://github.com/matrix-construct/ldap3"