forked from philippseith/signalr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
32 lines (29 loc) · 1023 Bytes
/
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
module github.com/superbet-group/signalr
go 1.21.1
require (
github.com/cenkalti/backoff/v4 v4.2.1
github.com/dave/jennifer v1.7.0
github.com/go-kit/log v0.2.1
github.com/google/uuid v1.3.1
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.28.0
github.com/stretchr/testify v1.8.4
github.com/teivah/onecontext v1.3.0
github.com/vmihailenco/msgpack/v5 v5.4.0
nhooyr.io/websocket v1.8.7
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/klauspost/compress v1.16.6 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)