-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
25 lines (22 loc) · 863 Bytes
/
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
module github.com/Shopify/mybench
go 1.22.1
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2
github.com/go-mysql-org/go-mysql v1.6.0
github.com/google/uuid v1.3.0
github.com/mattn/go-sqlite3 v1.14.13
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0
go.uber.org/atomic v1.9.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/pingcap/errors v0.11.5-0.20201126102027-b0a155152ca3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726 // indirect
github.com/siddontang/go-log v0.0.0-20190221022429-1e957dd83bed // indirect
golang.org/x/exp v0.0.0-20221011111909-0220f59fc3e4 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)