summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2022-01-02 13:23:31 -0800
committerMike Crute <mike@crute.us>2022-01-02 13:23:31 -0800
commit0c472df1b28e8378a0be92a587c02a445b28ab7f (patch)
tree6082bc0e25744524b9bb4ab613a3e3a6204e76dc /go.mod
parenta56b6c22895a9fe5c9ae0838d19bfb6a913a388d (diff)
downloadoidc_proxy-master.tar.bz2
oidc_proxy-master.tar.xz
oidc_proxy-master.zip
Fix build bugsHEADmaster
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod15
1 files changed, 15 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..f55bc3b
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,15 @@
1module code.crute.me/mcrute/oidc_proxy
2
3go 1.15
4
5require (
6 github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
7 github.com/google/go-cmp v0.5.3 // indirect
8 github.com/gorilla/handlers v1.5.1
9 github.com/lox/httpcache v1.2.0
10 github.com/pkg/errors v0.9.1
11 github.com/rainycape/vfs v0.0.0-20170722131704-164487ec47b4 // indirect
12 github.com/stretchr/testify v1.6.1 // indirect
13 golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9 // indirect
14 gopkg.in/square/go-jose.v2 v2.5.1
15)