forked from nyaruka/gocommon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
30 lines (27 loc) · 1023 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
25
26
27
28
29
30
module github.com/nyaruka/gocommon
require (
github.com/aws/aws-sdk-go v1.40.56
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-chi/chi v4.1.2+incompatible
github.com/gofrs/uuid v3.3.0+incompatible
github.com/gomodule/redigo v2.0.0+incompatible
github.com/jmoiron/sqlx v1.3.4
github.com/lib/pq v1.10.4
github.com/nyaruka/phonenumbers v1.0.71
github.com/pkg/errors v0.9.1
github.com/shopspring/decimal v1.2.0
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20210614182718-04defd469f4e
gopkg.in/go-playground/validator.v9 v9.31.0
)
require (
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)
go 1.17