-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
38 lines (33 loc) · 1.06 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
module github.com/oceanbase/obkv-table-client-go
go 1.19
require (
github.com/go-sql-driver/mysql v1.7.0
github.com/golang/snappy v0.0.4
github.com/klauspost/compress v1.17.2
github.com/naoina/toml v0.1.1
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/pierrec/lz4/v4 v4.1.18
github.com/pkg/errors v0.9.1
github.com/scylladb/go-set v1.0.2
github.com/stretchr/testify v1.9.0
go.uber.org/zap v1.24.0
golang.org/x/crypto v0.17.0
)
require github.com/frankban/quicktest v1.14.6 // indirect
require (
go.uber.org/goleak v1.3.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.6.0
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/naoina/go-stringutil v0.1.0 // indirect
github.com/panjf2000/ants/v2 v2.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/sys v0.15.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v3 v3.0.1 // indirect
)