28 lines
855 B
Go
28 lines
855 B
Go
module github.com/filecoin-project/go-jsonrpc
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/gorilla/websocket v1.5.1
|
|
github.com/ipfs/go-log/v2 v2.0.8
|
|
github.com/stretchr/testify v1.11.1
|
|
go.opencensus.io v0.22.3
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/net v0.33.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|