-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (29 loc) · 991 Bytes
/
go.mod
File metadata and controls
32 lines (29 loc) · 991 Bytes
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
module github.com/lamoda/gonkey
go 1.25.0
require (
github.com/aerospike/aerospike-client-go/v5 v5.11.0
github.com/fatih/color v1.19.0
github.com/goccy/go-yaml v1.19.2
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
github.com/kylelemons/godebug v1.1.0
github.com/lib/pq v1.12.3
github.com/redis/go-redis/v9 v9.19.0
github.com/stretchr/testify v1.11.1
github.com/tidwall/gjson v1.18.0
golang.org/x/sync v0.20.0
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.21 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/match v1.2.0 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/yuin/gopher-lua v1.1.2 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/sys v0.43.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)