-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (24 loc) · 917 Bytes
/
go.mod
File metadata and controls
28 lines (24 loc) · 917 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
module github.com/streamingfast/logging
go 1.22
require (
github.com/blendle/zapdriver v1.3.1
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/mitchellh/go-testing-interface v1.14.1
github.com/stretchr/testify v1.7.0
github.com/test-go/testify v1.1.4
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
)
require github.com/benbjohnson/clock v1.1.0 // indirect
require (
github.com/benbjohnson/clock v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/lithammer/dedent v1.1.0
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
google.golang.org/protobuf v1.36.6
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)