-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (23 loc) · 829 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
module github.com/antosdaniel/go-presentation-generate-code
go 1.20
require (
github.com/bufbuild/connect-go v1.5.2
github.com/friendsofgo/errors v0.9.2
github.com/google/uuid v1.3.0
github.com/jackc/pgx/v5 v5.3.1
github.com/volatiletech/sqlboiler/v4 v4.14.1
github.com/volatiletech/strmangle v0.0.4
go.uber.org/mock v0.3.0
golang.org/x/net v0.9.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/volatiletech/inflect v0.0.1 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
)