-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
35 lines (32 loc) · 1.22 KB
/
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
26
27
28
29
30
31
32
33
34
35
module github.com/0xPolygon/cdk-rpc
go 1.21.3
require (
github.com/didip/tollbooth/v6 v6.1.2
github.com/ethereum/go-ethereum v1.12.1
github.com/gorilla/websocket v1.5.1
github.com/hermeznetwork/tracerr v0.3.2
github.com/invopop/jsonschema v0.7.0
github.com/jmoiron/sqlx v1.2.0
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.24.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-pkgz/expirable-cache v0.0.3 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
github.com/lib/pq v1.10.7 // indirect
github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)