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"] }