This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
42 lines (39 loc) · 1.6 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module lockbox.dev/oauth2
require (
darlinggo.co/trout/v2 v2.1.1
github.com/coreos/go-oidc/v3 v3.5.0
github.com/hashicorp/go-uuid v1.0.3
github.com/mailgun/mailgun-go/v4 v4.8.2
github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249
impractical.co/googleid v0.2.1
lockbox.dev/accounts v0.4.0
lockbox.dev/clients v0.6.1-0.20220212054345-f7c94380f09c
lockbox.dev/grants v0.6.0
lockbox.dev/scopes v0.3.1-0.20220219235751-bc0243a6a8d8
lockbox.dev/sessions v0.3.0
lockbox.dev/tokens v0.4.1-0.20220226121017-77f3eb5665fe
yall.in v0.0.8
)
require (
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect
github.com/hashicorp/go-memdb v1.3.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/pkg/errors v0.8.1 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/oauth2 v0.3.0 // indirect
golang.org/x/sys v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)
go 1.17