-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (25 loc) · 808 Bytes
/
go.mod
File metadata and controls
29 lines (25 loc) · 808 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
module github.com/pingcap/tiproxy/lib
go 1.25.8
require (
github.com/cenkalti/backoff/v4 v4.2.1
github.com/spf13/cobra v1.5.0
github.com/stretchr/testify v1.8.1
github.com/tiancaiamao/gp v0.0.0-20230126082955-4f9e4f1ed9b5
go.uber.org/atomic v1.9.0
go.uber.org/zap v1.23.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/BurntSushi/toml v0.3.1
github.com/kr/pretty v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
go.uber.org/multierr v1.8.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)