tvl-depot/tvix/castore-go
Florian Klink 2546446d51 feat(tvix/castore): bump [Directory,File]Node size to u64
Having more than 4GiB files is quite possible (think about the NixOS
graphical installer, and an uncompressed iso of it).

No wire format changes.

Change-Id: Ia78a07e4c554e91b93c5b9f8533266e4bd7f22b6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9950
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2023-11-05 10:57:01 +00:00
..
castore.go feat(tvix/castore): bump [Directory,File]Node size to u64 2023-11-05 10:57:01 +00:00
castore.pb.go feat(tvix/castore): bump [Directory,File]Node size to u64 2023-11-05 10:57:01 +00:00
castore_test.go feat(tvix/castore): bump [Directory,File]Node size to u64 2023-11-05 10:57:01 +00:00
default.nix chore(tvix): move regenerate scripts to passthru 2023-10-17 20:25:45 +00:00
go.mod chore(tvix/castore-go): rename go module 2023-10-17 20:25:45 +00:00
go.sum chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
LICENSE chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
README.md chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rename_node.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_blobstore.pb.go feat(tvix/castore): bump [Directory,File]Node size to u64 2023-11-05 10:57:01 +00:00
rpc_blobstore_grpc.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_directory.pb.go feat(tvix/castore): bump [Directory,File]Node size to u64 2023-11-05 10:57:01 +00:00
rpc_directory_grpc.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00

castore-go

This directory contains generated golang bindings, both for the tvix-castore data models, as well as the gRPC bindings.

They are generated with mg run //tvix:castore-go-generate. These files end with .pb.go, and are ensured to be up to date by a CI check.

Additionally, code useful when interacting with these data structures (ending just with .go) is provided.