generated from wisdom-oss/microservice-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
35 lines (31 loc) · 1.11 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
33
34
35
module microservice
go 1.22.0
require (
github.com/PuerkitoBio/goquery v1.9.1
github.com/georgysavva/scany/v2 v2.1.3
github.com/jackc/pgx/v5 v5.5.5
github.com/joho/godotenv v1.5.1
github.com/qustavo/dotsql v1.2.0
github.com/rs/zerolog v1.32.0
github.com/twpayne/go-geom v1.5.4
github.com/twpayne/pgx-geom v0.0.0-20240315001804-85b6e06bd7e0
github.com/wisdom-oss/commonTypes/v2 v2.0.1
github.com/wisdom-oss/go-healthcheck v1.0.2
golang.org/x/net v0.24.0
)
require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.20.0 // indirect
)