-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
25 lines (22 loc) · 853 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 coap-client
go 1.21
require (
github.com/pion/dtls/v2 v2.2.8-0.20230905141523-2b584af66577
github.com/plgd-dev/go-coap/v3 v3.1.5
)
require (
github.com/dsnet/golib/memfile v1.0.0 // indirect
github.com/go-ocf/go-coap v0.0.0-20200511140640-db6048acfdd3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/transport v0.10.0 // indirect
github.com/pion/transport/v3 v3.0.1 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
)