-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 749 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 749 Bytes
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
module github.com/rsocket/rsocket-go
go 1.18
require (
github.com/golang/mock v1.4.4
github.com/google/uuid v1.1.2
github.com/gorilla/websocket v1.4.2
github.com/jjeffcaii/reactor-go v0.5.6
github.com/pkg/errors v0.9.1
github.com/pkg/profile v1.5.0
github.com/stretchr/testify v1.7.1
github.com/urfave/cli/v2 v2.3.0
go.uber.org/atomic v1.7.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/panjf2000/ants/v2 v2.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)