-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
47 lines (42 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
module github.com/mchekalov/chat-server
go 1.22.0
toolchain go1.22.1
require (
github.com/Masterminds/squirrel v1.5.4
github.com/envoyproxy/protoc-gen-validate v1.0.4
github.com/gojuno/minimock/v3 v3.3.6
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
github.com/mchekalov/platform_common v0.0.0-20240315091224-0d284c71679b
github.com/pkg/errors v0.9.1
github.com/rakyll/statik v0.1.7
github.com/rs/cors v1.10.1
github.com/stretchr/testify v1.8.4
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe
google.golang.org/grpc v1.62.1
google.golang.org/protobuf v1.32.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sync v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/georgysavva/scany/v2 v2.1.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/jackc/pgx/v5 v5.5.5 // indirect
github.com/joho/godotenv v1.5.1
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
)