diff --git a/Cargo.lock b/Cargo.lock index b7ffb90..50a9be6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,6 +578,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "const-random" version = "0.1.18" @@ -737,6 +743,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" dependencies = [ "block-buffer 0.12.1", + "const-oid", "crypto-common 0.2.2", ] @@ -880,7 +887,7 @@ dependencies = [ "log", "object_store", "percent-encoding", - "sha2", + "sha2 0.11.0", "tokio", "url", "vgi", @@ -2526,6 +2533,17 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + [[package]] name = "shlex" version = "2.0.1" @@ -2993,7 +3011,7 @@ dependencies = [ "rust_decimal", "serde", "serde_json", - "sha2", + "sha2 0.10.9", "thiserror", "tokio", "tower-http", diff --git a/crates/fixedformat-worker/Cargo.toml b/crates/fixedformat-worker/Cargo.toml index 65cbc87..0d151d7 100644 --- a/crates/fixedformat-worker/Cargo.toml +++ b/crates/fixedformat-worker/Cargo.toml @@ -63,5 +63,5 @@ object_store = { version = "0.14", default-features = false, features = [ tokio = { version = "1", default-features = false, features = ["rt", "time"] } async-trait = "0.1" http = "1" -sha2 = "0.10" +sha2 = "0.11" hmac = "0.12"