diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-12T18·38+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-10-12T19·18+0000 |
commit | a9e5a7cec90bd79241cf5f0d5df136b6dc2d31bd (patch) | |
tree | b26236eb365066da507d2f62fabd0de0a5bac4d6 /tvix/store | |
parent | be32ab1eb2b60bf028c32954d1a6a5d09c6d2f9c (diff) |
feat(tvix/store): enable tls[-roots] feature in tonic r/6789
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 <flokli@flokli.de> Reviewed-by: Brian McGee <brian@bmcgee.ie> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index a995c60c5b39..95c474d6b929 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"] } |