about summary refs log tree commit diff
path: root/tvix/build-go/go.mod
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-12-09T14·28+0200
committerclbot <clbot@tvl.fyi>2023-12-11T21·43+0000
commita1b2dc8aaf87b73025f4090308c9649e8bf66a99 (patch)
treec97cbc4bda657a98b99348b1d3b02f7026b1a821 /tvix/build-go/go.mod
parentfd27d8ddc3a27fd89a3a132343c6a1ad8da3671c (diff)
feat(tvix/build-go): init r/7152
This adds the generated golang bindings for tvix-build.

Change-Id: I2eb0d1cc38bc2fa34afd7c904eea05c5ee192cce
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10242
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Diffstat (limited to 'tvix/build-go/go.mod')
-rw-r--r--tvix/build-go/go.mod19
1 files changed, 19 insertions, 0 deletions
diff --git a/tvix/build-go/go.mod b/tvix/build-go/go.mod
new file mode 100644
index 0000000000..1454b5cada
--- /dev/null
+++ b/tvix/build-go/go.mod
@@ -0,0 +1,19 @@
+module code.tvl.fyi/tvix/build-go
+
+go 1.19
+
+require (
+	code.tvl.fyi/tvix/castore-go v0.0.0-20231105151352-990d6ba2175e
+	google.golang.org/grpc v1.51.0
+	google.golang.org/protobuf v1.31.0
+)
+
+require (
+	github.com/golang/protobuf v1.5.2 // indirect
+	github.com/klauspost/cpuid/v2 v2.0.9 // indirect
+	golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
+	golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
+	golang.org/x/text v0.4.0 // indirect
+	google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
+	lukechampine.com/blake3 v1.1.7 // indirect
+)