From c86c16d930e2e1e90d89287d8781620fd36ed412 Mon Sep 17 00:00:00 2001 From: Colin L Rice Date: Thu, 10 Feb 2022 02:57:50 -0500 Subject: [PATCH] Fix go.mod to fully enumerate dependencies This allows build infrastructure which uses go mod vendor with go 1.17 to work (i.e. nixos). --- go.mod | 1 + 1 file changed, 1 insertion(+) diff --git a/go.mod b/go.mod index 43ba680..22093e6 100644 --- a/go.mod +++ b/go.mod @@ -16,6 +16,7 @@ require ( require ( github.com/kr/pretty v0.2.1 // indirect github.com/stretchr/testify v1.7.0 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect golang.org/x/sys v0.0.0-20211109184856-51b60fd695b3 // indirect )