diff --git a/Cargo.lock b/Cargo.lock index 3823756a684b3..d2bffe99a1fe9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7981,9 +7981,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.7" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ "cfg-if", "cpufeatures", diff --git a/Cargo.toml b/Cargo.toml index 4ca02e79be0af..28c5ce95fdd27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -238,7 +238,7 @@ ratatui = { version = "0.23.0", optional = true, default-features = false, featu # Datadog Pipelines hex = { version = "0.4.3", default-features = false, optional = true } -sha2 = { version = "0.10.7", default-features = false, optional = true } +sha2 = { version = "0.10.8", default-features = false, optional = true } # GreptimeDB greptimedb-client = { git = "https://github.com/GreptimeTeam/greptimedb-client-rust.git", rev = "bc32362adf0df17a41a95bae4221d6d8f1775656", optional = true } diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index b06c06e97d6b9..95ac24041f02a 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -35,6 +35,6 @@ reqwest = { version = "0.11", features = ["json", "blocking"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.107" serde_yaml = "0.9.25" -sha2 = "0.10.7" +sha2 = "0.10.8" tempfile = "3.8.0" toml = { version = "0.8.1", default-features = false, features = ["parse"] }