-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
26 lines (23 loc) · 932 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
module github.com/XciD/loxone-ws
go 1.17
require (
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/go-version v1.3.0
github.com/lestrrat-go/jwx v1.2.0
github.com/mitchellh/mapstructure v1.1.2
github.com/sirupsen/logrus v1.4.0
)
require (
github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0 // indirect
github.com/goccy/go-json v0.4.8 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.7 // indirect
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
github.com/lestrrat-go/httpcc v1.0.0 // indirect
github.com/lestrrat-go/iter v1.0.1 // indirect
github.com/lestrrat-go/option v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.0.0-20201217014255-9d1352758620 // indirect
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221 // indirect
)