aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-01-07 20:00:42 -0800
committerMike Crute <mike@crute.us>2023-01-07 20:23:30 -0800
commit6cb3c4271d3126697c8917bce9312603fa6607ca (patch)
treed3492fe7a59eb0ac3f7083061008ff2d60d18349 /go.mod
parent85c67dd133605d2b1125a1b0e8c28f991223aa75 (diff)
downloadgolib-6cb3c4271d3126697c8917bce9312603fa6607ca.tar.bz2
golib-6cb3c4271d3126697c8917bce9312603fa6607ca.tar.xz
golib-6cb3c4271d3126697c8917bce9312603fa6607ca.zip
net/http: add accept parserv0.5.2
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 10 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index 44160a3..9001018 100644
--- a/go.mod
+++ b/go.mod
@@ -2,6 +2,14 @@ module code.crute.us/mcrute/golib
2 2
3go 1.18 3go 1.18
4 4
5require golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 5require (
6 github.com/stretchr/testify v1.8.1
7 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
8)
6 9
7require golang.org/x/text v0.3.3 // indirect 10require (
11 github.com/davecgh/go-spew v1.1.1 // indirect
12 github.com/pmezard/go-difflib v1.0.0 // indirect
13 golang.org/x/text v0.3.3 // indirect
14 gopkg.in/yaml.v3 v3.0.1 // indirect
15)