forked from anycable/anycable-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
45 lines (42 loc) · 1.71 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
36
37
38
39
40
41
42
43
44
45
module github.com/anycable/anycable-go
go 1.18
require (
github.com/FZambia/sentinel v1.1.0
github.com/apex/log v1.9.0
github.com/golang-collections/go-datastructures v0.0.0-20150211160725-59788d5eb259
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/golang/protobuf v1.5.2
github.com/gomodule/redigo v1.8.8
github.com/google/gops v0.3.23
github.com/gorilla/websocket v1.5.0
github.com/joomcode/errorx v1.1.0
github.com/matoous/go-nanoid v1.5.0
github.com/mattn/go-isatty v0.0.14
github.com/mitchellh/go-mruby v0.0.0-20200315023956-207cedc21542
github.com/namsral/flag v1.7.4-pre
github.com/nats-io/nats.go v1.16.0
github.com/stretchr/testify v1.7.4
github.com/syossan27/tebata v0.0.0-20180602121909-b283fe4bc5ba
github.com/urfave/cli/v2 v2.11.1
go.uber.org/automaxprocs v1.5.1
golang.org/x/net v0.0.0-20220622184535-263ec571b305
google.golang.org/grpc v1.47.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/nats-io/nats-server/v2 v2.8.4 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/objx v0.4.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
golang.org/x/sys v0.0.0-20220622161953-175b2fd9d664 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220622171453-ea41d75dfa0f // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)