-
Notifications
You must be signed in to change notification settings - Fork 32
/
go.mod
43 lines (39 loc) · 1.56 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
module github.com/Yandex-Practicum/go-autotests
go 1.22.1
toolchain go1.22.5
require (
github.com/go-resty/resty/v2 v2.7.0
github.com/goccy/go-yaml v1.12.0
github.com/gofrs/uuid v4.3.0+incompatible
github.com/google/pprof v0.0.0-20220829040838-70bd9ae97f40
github.com/jackc/pgx v3.6.2+incompatible
github.com/jingyugao/rowserrcheck v1.1.1
github.com/stretchr/testify v1.8.0
github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966
golang.org/x/sync v0.8.0
golang.org/x/tools v0.24.0
honnef.co/go/tools v0.5.1
)
require (
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.10.0 // indirect
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
github.com/gostaticanalysis/comment v1.4.2 // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/lib/pq v1.10.7 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)