Commits on Source (15)
conn.go
0 → 100644
... | ... | @@ -3,12 +3,12 @@ module gfx.cafe/open/jrpc |
go 1.18 | ||
require ( | ||
gfx.cafe/util/go/bufpool v0.0.0-20221221002138-cc76846e2979 | ||
gfx.cafe/util/go/frand v0.0.0-20221221002138-cc76846e2979 | ||
gfx.cafe/util/go/bufpool v0.0.0-20230121041905-80dafb1e973e | ||
gfx.cafe/util/go/frand v0.0.0-20230121041905-80dafb1e973e | ||
github.com/alecthomas/kong v0.7.1 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/deckarep/golang-set v1.8.0 | ||
github.com/ethereum/go-ethereum v1.10.26 | ||
github.com/ethereum/go-ethereum v1.11.1 | ||
github.com/gobuffalo/packr/v2 v2.8.3 | ||
github.com/goccy/go-json v0.10.0 | ||
github.com/iancoleman/strcase v0.2.0 | ||
... | ... | @@ -22,6 +22,7 @@ require ( |
require ( | ||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect | ||
github.com/deckarep/golang-set/v2 v2.1.0 // indirect | ||
github.com/gin-gonic/gin v1.7.7 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/go-stack/stack v1.8.1 // indirect | ||
... | ... | @@ -30,24 +31,24 @@ require ( |
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/karrick/godirwalk v1.17.0 // indirect | ||
github.com/klauspost/compress v1.15.13 // indirect | ||
github.com/klauspost/compress v1.15.15 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/markbates/errx v1.1.0 // indirect | ||
github.com/markbates/oncer v1.0.0 // indirect | ||
github.com/markbates/safe v1.0.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/rs/zerolog v1.28.0 // indirect | ||
github.com/rs/zerolog v1.29.0 // indirect | ||
github.com/shirou/gopsutil v3.21.11+incompatible // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/tklauser/go-sysconf v0.3.11 // indirect | ||
github.com/tklauser/numcpus v0.6.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.2 // indirect | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/term v0.3.0 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/term v0.5.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
... | ... |