-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
40 lines (36 loc) · 1.33 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
module github.com/Wave-95/pgserver
go 1.20
require (
github.com/go-chi/chi v1.5.4
github.com/jackc/pgx/v5 v5.3.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.13.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/leodido/go-urn v1.2.3 // indirect
github.com/otiai10/gosseract/v2 v2.4.0 // indirect
github.com/otiai10/openaigo v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/tools v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/go-chi/chi/v5 v5.0.8 // indirect
github.com/google/uuid v1.3.0
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.0 // indirect
github.com/stretchr/testify v1.8.2
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/sync v0.2.0 // indirect
golang.org/x/text v0.8.0 // indirect
)