-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
128 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,44 @@ | ||
module github.com/philippseith/signalr | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.2 | ||
|
||
require ( | ||
github.com/cenkalti/backoff/v4 v4.2.1 | ||
github.com/dave/jennifer v1.6.1 | ||
github.com/cenkalti/backoff/v4 v4.3.0 | ||
github.com/dave/jennifer v1.7.0 | ||
github.com/go-kit/log v0.2.1 | ||
github.com/google/uuid v1.3.0 | ||
github.com/onsi/ginkgo v1.12.1 | ||
github.com/onsi/gomega v1.27.10 | ||
github.com/quic-go/webtransport-go v0.6.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/google/uuid v1.6.0 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.32.0 | ||
github.com/quic-go/webtransport-go v0.7.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/teivah/onecontext v1.3.0 | ||
github.com/vmihailenco/msgpack/v5 v5.3.5 | ||
nhooyr.io/websocket v1.8.7 | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 | ||
nhooyr.io/websocket v1.8.10 | ||
) | ||
|
||
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/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-logfmt/logfmt v0.6.0 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/pprof v0.0.0-20230821062121-407c9e7a662f // indirect | ||
github.com/klauspost/compress v1.16.6 // indirect | ||
github.com/nxadm/tail v1.4.4 // indirect | ||
github.com/onsi/ginkgo/v2 v2.12.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240402174815-29b9bb013b0f // indirect | ||
github.com/nxadm/tail v1.4.11 // indirect | ||
github.com/onsi/ginkgo/v2 v2.17.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/quic-go/qpack v0.4.0 // indirect | ||
github.com/quic-go/qtls-go1-20 v0.3.4 // indirect | ||
github.com/quic-go/quic-go v0.39.0 // indirect | ||
github.com/quic-go/quic-go v0.42.0 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
go.uber.org/mock v0.3.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 // indirect | ||
go.uber.org/mock v0.4.0 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/net v0.24.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.