-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 707 Bytes
/
Copy pathgo.mod
File metadata and controls
23 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/rs/logbench
go 1.21
require (
github.com/juju/testing v0.0.0-20190613124551-e81189438503
github.com/rs/zerolog v1.30.0
github.com/sirupsen/logrus v1.9.3
go.uber.org/zap v1.25.0
golang.org/x/perf v0.0.0-20201207232921-bdcc6220ee90
)
require (
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/juju/loggo v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/sys v0.11.0 // indirect
gopkg.in/check.v1 v1.0.0-20160105164936-4f90aeace3a2 // indirect
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)