-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
37 lines (33 loc) · 1.22 KB
/
go.mod
File metadata and controls
37 lines (33 loc) · 1.22 KB
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
module github.com/streamingfast/eth-go
go 1.24.0
toolchain go1.24.4
require (
github.com/btcsuite/btcd/btcec/v2 v2.3.5
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
github.com/holiman/uint256 v1.3.2
github.com/pkg/errors v0.9.1 // indirect
github.com/streamingfast/logging v0.0.0-20220405224725-2755dab2ce75
github.com/stretchr/testify v1.11.1
github.com/tidwall/gjson v1.14.1
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.44.0
)
require (
github.com/blendle/zapdriver v1.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/goleak v1.3.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/term v0.37.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)