forked from AthenZ/athenz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
24 lines (22 loc) · 847 Bytes
/
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
module github.com/AthenZ/athenz
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/ardielle/ardielle-go v1.5.2
github.com/ardielle/ardielle-tools v1.5.4 // indirect
github.com/aws/aws-sdk-go v1.32.6
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dimfeld/httptreemux v5.0.1+incompatible
github.com/gorilla/mux v1.7.4
github.com/jawher/mow.cli v1.2.0 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
golang.org/x/text v0.3.2 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/square/go-jose.v2 v2.4.1
gopkg.in/yaml.v2 v2.3.0
)
go 1.13