forked from infobloxopen/atlas-app-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
32 lines (29 loc) · 1.14 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
module github.com/infobloxopen/atlas-app-toolkit
go 1.14
require (
contrib.go.opencensus.io/exporter/ocagent v0.7.0
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/dgrijalva/jwt-go v3.2.1-0.20200107013213-dc14462fd587+incompatible
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.2.0
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
github.com/grpc-ecosystem/grpc-gateway v1.14.6
github.com/jinzhu/inflection v1.0.0
github.com/lib/pq v1.3.1-0.20200116171513-9eb3fc897d6f
github.com/sirupsen/logrus v1.8.0
github.com/stretchr/testify v1.5.1
go.opencensus.io v0.22.3
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
google.golang.org/api v0.26.0 // indirect
google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece
google.golang.org/grpc v1.29.1
gopkg.in/yaml.v2 v2.2.8 // indirect
gorm.io/datatypes v1.0.1
gorm.io/driver/postgres v1.1.0
gorm.io/gorm v1.21.9
)
replace (
github.com/golang/protobuf => github.com/golang/protobuf v1.3.5
github.com/infobloxopen/atlas-app-toolkit => github.com/edhaight/atlas-app-toolkit v1.1.0-alpha
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20200225123651-fc8f55426688
)