diff --git a/Cargo.toml b/Cargo.toml index c642c680..dac658f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ opentelemetry = { version = "0.32", default-features = false, features = ["trace opentelemetry_sdk = { version = "0.32", default-features = false, features = ["trace"], optional = true } serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" -sha2 = "0.10" +sha2 = "0.11" distributed_macros = { workspace = true } sqlx = { version = "0.9", default-features = false, optional = true } tonic = { version = "0.14", default-features = false, features = ["router", "transport", "codegen"], optional = true } @@ -82,7 +82,7 @@ uuid = { version = "1", features = ["v7"] } [build-dependencies] serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" -sha2 = "0.10" +sha2 = "0.11" tonic-build = { version = "0.14", default-features = false, features = ["transport"] } [dev-dependencies] diff --git a/distributed_cli/Cargo.toml b/distributed_cli/Cargo.toml index 4d7bbf8f..c573be7b 100644 --- a/distributed_cli/Cargo.toml +++ b/distributed_cli/Cargo.toml @@ -22,4 +22,4 @@ clap = { version = "4", features = ["derive"] } glob = "0.3" serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" diff --git a/distributed_macros/Cargo.toml b/distributed_macros/Cargo.toml index a3841e78..e896ad45 100644 --- a/distributed_macros/Cargo.toml +++ b/distributed_macros/Cargo.toml @@ -17,7 +17,7 @@ runtime = ["application-runtime"] proc-macro-crate = "3.5" proc-macro2 = "1.0" quote = "1.0" -sha2 = "0.10" +sha2 = "0.11" syn = { version = "2.0", features = ["full", "visit"] } [dev-dependencies]