diff options
author | Florian Klink <flokli@flokli.de> | 2024-08-27T10·02+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-27T10·34+0000 |
commit | 2fa5e71d5e768f45d743347187f70404b3771e79 (patch) | |
tree | e112f26c8ae4e98bde1b709636060d340826aa62 /tvix/Cargo.nix | |
parent | d292203235ad69eea045febad7d59e2ac0e3a37d (diff) |
fix(tvix/store): restore v1alpha reflection endpoint r/8593
tonic-reflection 0.12.x moved from the v1alpha to v1 of the reflection protocol. However, most clients, like Postman, Kreya and evans don't support that one yet. Bump tonic-reflection to 0.12.2, which re-introduces v1alpha support alongside the v1 version of it, registering both services. This fixes the example documented in tvix/store/README.md, it was previously failing as evans couldn't find the v1alpha reflection service. See https://github.com/hyperium/tonic/pull/1888 for details. Change-Id: I55438877317f82dc39face13afeb9594cda07a4e Reviewed-on: https://cl.tvl.fyi/c/depot/+/12353 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com>
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 274d3d1d1ae3..c9fec85e2e37 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -14692,9 +14692,9 @@ rec { }; "tonic-reflection" = rec { crateName = "tonic-reflection"; - version = "0.12.1"; + version = "0.12.2"; edition = "2021"; - sha256 = "0wy1vdj4fj90j6zjqs78c2fvwcl9krxiz6709idspsbksqxchhmp"; + sha256 = "1zwrm9zzahipsrmaqfp4vk0w31qymf740fsp0yczh16vxrsbhmkv"; libName = "tonic_reflection"; authors = [ "James Nugent <james@jen20.com>" |