From a9e5a7cec90bd79241cf5f0d5df136b6dc2d31bd Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 12 Oct 2023 20:38:28 +0200 Subject: feat(tvix/store): enable tls[-roots] feature in tonic This teaches tonic to speak https, so `grpc+https` becomes a working connection string. Change-Id: I9c550ea665b829725b545a164cf6f78587bd5213 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9714 Autosubmit: flokli Reviewed-by: Brian McGee Tested-by: BuildkiteCI --- tvix/store/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/store/Cargo.toml') diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index a995c60c5b..95c474d6b9 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0.38" tokio-stream = { version = "0.1.14", features = ["fs"] } tokio-util = { version = "0.7.9", features = ["io", "io-util", "compat"] } tokio = { version = "1.32.0", features = ["fs", "macros", "net", "rt", "rt-multi-thread", "signal"] } -tonic = "0.10.2" +tonic = { version = "0.10.2", features = ["tls", "tls-roots"] } tower = "0.4.13" tracing = "0.1.37" tracing-subscriber = { version = "0.3.16", features = ["json"] } -- cgit 1.4.1