diff options
author | Florian Klink <flokli@flokli.de> | 2022-10-28T14·26+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-11-08T17·57+0000 |
commit | 5731fbbee3c9f3a35f77e42291fc3a5be146b5f8 (patch) | |
tree | d5b7bd0cd9647f8045818a61e6aaf2ff8ce1f1ff /tvix/proto | |
parent | 7ac36fd8db2a39a7e2528eec6debe29b675908a0 (diff) |
chore(tvix/proto): change package name to tvix.proto.v1 r/5272
`buf` doesn't like protos with different package names in the same directory. Change-Id: I30806b46b88f103779faa40466461091a4a01e06 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7130 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: Adam Joseph <adam@westernsemico.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/proto')
-rw-r--r-- | tvix/proto/castore.proto | 2 | ||||
-rw-r--r-- | tvix/proto/evaluator.proto | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tvix/proto/castore.proto b/tvix/proto/castore.proto index ec02660352ef..aa3c9b37bcbe 100644 --- a/tvix/proto/castore.proto +++ b/tvix/proto/castore.proto @@ -3,7 +3,7 @@ syntax = "proto3"; -package fossil.store; +package tvix.proto.v1; // A Directory can contain Directory, File or Symlink nodes. // Each of these nodes have a name attribute, which is the basename in that directory diff --git a/tvix/proto/evaluator.proto b/tvix/proto/evaluator.proto index 710a28fb9df7..96431a0b3bfb 100644 --- a/tvix/proto/evaluator.proto +++ b/tvix/proto/evaluator.proto @@ -2,7 +2,7 @@ // Copyright © 2021 The Tvix Authors syntax = "proto3"; -package tvix.proto.evaluator.v1; +package tvix.proto.v1; service EvaluatorService { rpc Evaluate(stream EvaluateRequest) returns (stream EvaluateResponse) {} |