-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (21 loc) · 787 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
module github.com/yang-zzhong/xmpp-core
go 1.17
require (
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.4.2
github.com/jackal-xmpp/stravaganza/v2 v2.0.0
github.com/spf13/cobra v1.2.1
github.com/yang-zzhong/scram-auth v0.0.0-20210914032941-bb5a6826fb5a
gosrc.io/xmpp v0.5.1
)
require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/net v0.0.0-20210415231046-e915ea6b2b7d // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.26.0 // indirect
nhooyr.io/websocket v1.6.5 // indirect
)