-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
52 lines (47 loc) · 1.71 KB
/
go.mod
File metadata and controls
52 lines (47 loc) · 1.71 KB
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
48
49
50
51
52
module github.com/itbasis/go-test-utils/v6
go 1.24
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/dusted-go/logging v1.3.0
github.com/onsi/ginkgo/v2 v2.23.4
github.com/onsi/gomega v1.37.0
github.com/orandin/slog-gorm v1.4.0
golang.org/x/tools v0.34.0
gorm.io/driver/postgres v1.6.0
gorm.io/gorm v1.31.1
)
require (
github.com/baulk/chardet v0.1.0 // indirect
github.com/editorconfig-checker/editorconfig-checker/v3 v3.3.0 // indirect
github.com/editorconfig/editorconfig-core-go/v2 v2.6.3 // indirect
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
go.uber.org/mock v0.5.2 // indirect
golang.org/x/mod v0.25.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
)
require (
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/pprof v0.0.0-20250602020802-c6617b811d0e // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.7.5 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonboulle/clockwork v0.5.0
github.com/rogpeppe/go-internal v1.14.1 // indirect
go.uber.org/automaxprocs v1.6.0 // indirect
golang.org/x/crypto v0.39.0 // indirect
golang.org/x/net v0.41.0 // indirect
golang.org/x/sync v0.15.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.26.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
tool (
github.com/editorconfig-checker/editorconfig-checker/v3/cmd/editorconfig-checker
github.com/onsi/ginkgo/v2/ginkgo
go.uber.org/mock/mockgen
)