-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
31 lines (28 loc) · 1.04 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
module github.com/callsamu/expenses-api
go 1.19
require (
github.com/go-mail/mail/v2 v2.3.0
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/julienschmidt/httprouter v1.3.0
github.com/lib/pq v1.10.7
github.com/rs/zerolog v1.28.0
github.com/stretchr/testify v1.8.1
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
golang.org/x/crypto v0.4.0
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
)
require (
github.com/Rhymond/go-money v1.0.9 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/sys v0.4.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/mail.v2 v2.3.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)