-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathgo.mod
32 lines (28 loc) · 1 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/PacktPublishing/Domain-Driven-Design-with-GoLang
go 1.19
require (
github.com/Rhymond/go-money v1.0.7
github.com/go-bdd/gobdd v1.1.3
github.com/golang/mock v1.6.0
github.com/gorilla/mux v1.8.0
github.com/jackc/pgx/v4 v4.16.1
)
require (
github.com/cucumber/gherkin-go/v13 v13.0.0 // indirect
github.com/cucumber/messages-go/v12 v12.0.0 // indirect
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/gogo/protobuf v1.3.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/google/uuid v1.3.0
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.12.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.11.0 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/text v0.3.7 // indirect
)