From 0e9205ab29eb7d710be9903a8baaa02ecb55b3f6 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Thu, 8 Feb 2024 11:01:56 +0900 Subject: [PATCH] deps --- httpsig-hyper/Cargo.toml | 4 ++-- httpsig/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/httpsig-hyper/Cargo.toml b/httpsig-hyper/Cargo.toml index 83d4de7..396a20c 100644 --- a/httpsig-hyper/Cargo.toml +++ b/httpsig-hyper/Cargo.toml @@ -24,7 +24,7 @@ fxhash = { version = "0.2.1" } sha2 = { version = "0.10.8", default-features = false } # encoding -base64 = { version = "0.21.6" } +base64 = { version = "0.21.7" } # for request and response headers http = { version = "1.0.0" } @@ -36,7 +36,7 @@ bytes = { version = "1.5.0" } sfv = "0.9.4" [dev-dependencies] -tokio = { version = "1.35.1", default-features = false, features = [ +tokio = { version = "1.36.0", default-features = false, features = [ "macros", "rt-multi-thread", ] } # testing only? diff --git a/httpsig/Cargo.toml b/httpsig/Cargo.toml index 89001ab..156cc91 100644 --- a/httpsig/Cargo.toml +++ b/httpsig/Cargo.toml @@ -23,7 +23,7 @@ rand = { version = "0.8.5" } pkcs8 = { version = "0.10.2", default-features = false, features = ["pem"] } spki = { version = "0.7.3", default-features = false, features = ["pem"] } sec1 = { version = "0.7.3", default-features = false, features = ["der"] } -ed25519-compact = { version = "2.0.6", default-features = false, features = [ +ed25519-compact = { version = "2.1.1", default-features = false, features = [ "random", ] } ecdsa = { version = "0.16.9", default-features = false, features = [ @@ -41,7 +41,7 @@ hmac = { version = "0.12.1" } sha2 = { version = "0.10.8", default-features = false } # encoding -base64 = { version = "0.21.6" } +base64 = { version = "0.21.7" } # for rfc8941 structured field values sfv = "0.9.4"