diff options
author | Florian Klink <flokli@flokli.de> | 2022-10-29T11·28+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-12-22T14·35+0000 |
commit | 870cd533dd98e708f9870a8c85577681697db372 (patch) | |
tree | 658925222b9926a773efbbba824c48bba767a4b1 /tvix/store/build.rs | |
parent | 22ed59fabd8714279b4538783ca2fb23b28b15a0 (diff) |
feat(tvix/proto): add rpc_pathinfo r/5470
This defines a service that can be used to upload and retrieve metadata of nix paths. Change-Id: Id86eb531ce4ae316adb15934b0d1386a14ba2132 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7136 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: Adam Joseph <adam@westernsemico.com>
Diffstat (limited to 'tvix/store/build.rs')
-rw-r--r-- | tvix/store/build.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/build.rs b/tvix/store/build.rs index 4c2e7d59d61b..35fbe5a6770c 100644 --- a/tvix/store/build.rs +++ b/tvix/store/build.rs @@ -6,6 +6,7 @@ fn main() -> Result<()> { "tvix/store/protos/castore.proto", "tvix/store/protos/pathinfo.proto", "tvix/store/protos/rpc_blobstore.proto", + "tvix/store/protos/rpc_pathinfo.proto", ], // If we are in running `cargo build` manually, using `../..` works fine, // but in case we run inside a nix build, we need to instead point PROTO_ROOT |