diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-10T18·52+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-10-10T19·08+0000 |
commit | fe963ae0a3f5254023a55e3d0bca318953c9af12 (patch) | |
tree | 56824042e09862dd0dde9381cf3f4b2c77b594d9 /tvix/nar-bridge/go.mod | |
parent | e6ba84ea50217c83d0aafdbbe7c5a659ba3e6586 (diff) |
chore(tvix/nar-bridge): move to Export from storev1pb r/6773
This removes the Export method in nar-bridge, and updates all users to the version now in storev1pb. It moves the roundtrip test to the importer crate, and some of the utility functions into a separate util_test.go file. Change-Id: I81d9e0b35dfd78ef1042bed307281eecd2aaa2a8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9603 Reviewed-by: Brian McGee <brian@bmcgee.ie> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/nar-bridge/go.mod')
-rw-r--r-- | tvix/nar-bridge/go.mod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/nar-bridge/go.mod b/tvix/nar-bridge/go.mod index 4758b0f1793a..6e02277a4dbb 100644 --- a/tvix/nar-bridge/go.mod +++ b/tvix/nar-bridge/go.mod @@ -2,7 +2,7 @@ module code.tvl.fyi/tvix/nar-bridge require ( code.tvl.fyi/tvix/castore/protos v0.0.0-20231009220507-d6e0c5ab9bb7 - code.tvl.fyi/tvix/store/protos v0.0.0-20231009220507-46652989e097 + code.tvl.fyi/tvix/store/protos v0.0.0-20231010185549-e7ea67342035 github.com/alecthomas/kong v0.7.1 github.com/go-chi/chi v1.5.4 github.com/go-chi/chi/v5 v5.0.7 @@ -27,7 +27,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect golang.org/x/crypto v0.14.0 // indirect - golang.org/x/net v0.16.0 // indirect + golang.org/x/net v0.17.0 // indirect golang.org/x/sys v0.13.0 // indirect golang.org/x/text v0.13.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20231009173412-8bfb1ae86b6c // indirect |