From e8d84a8a4a05f069a3ce4f90d67a525aa92b52f9 Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Fri, 12 Apr 2024 11:52:10 -0500 Subject: [PATCH] Pin tonic dependency to avoid tls related dalek issues (#397) --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 982e604b..3a484315 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,12 +13,13 @@ path = "src/lib.rs" members = ["beacon"] [workspace.dependencies] -tonic = { version = "0" } +# Pin to 0.10 to avoid issues with tls and solana dalek deps +tonic = { version = "0.10" } bytes = "1" prost = "0" serde = { version = "1", features = ["derive"] } serde_json = "1" -tonic-build = { version = "0" } +tonic-build = { version = "0.10" } prost-build = "0" [features]