From 47788499dffbb1e46d1d31ee4a94b5c655b7cc68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Holm=20Gj=C3=B8rup?= Date: Mon, 12 Feb 2024 15:38:04 +0100 Subject: [PATCH] Make tonic version wildcard so the resolver use ccd-rust-sdk version --- contracts/my-contract/deploy-scripts/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/my-contract/deploy-scripts/Cargo.toml b/contracts/my-contract/deploy-scripts/Cargo.toml index abbb348..0735c9e 100644 --- a/contracts/my-contract/deploy-scripts/Cargo.toml +++ b/contracts/my-contract/deploy-scripts/Cargo.toml @@ -12,4 +12,5 @@ tokio = { version = "1.36", features = ["rt", "macros", "rt-multi-thread"] } clap = { version = "4", features = ["derive", "env"] } concordium-rust-sdk = "4" my-contract = { path = "../" } -tonic = { version = "0.10", features = ["tls"] } +# To enable TLS for the Client from concordium-rust-sdk. The version is put as '*' for the resolver to select the same version as the concordium-rust-sdk. +tonic = { version = "*", features = ["tls"] }