-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
25 lines (22 loc) · 919 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
module github.com/xconnio/wampproto-cli
go 1.20
require (
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/stretchr/testify v1.8.2
github.com/xconnio/wampproto-go v0.0.0-20240629093927-184b8a81377e
github.com/xconnio/wampproto-protobuf/go v0.0.0-20240701141955-e9a1025ec125
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/exp v0.0.0-20240525044651-4c93da0ed11d // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)