-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (23 loc) · 812 Bytes
/
go.mod
File metadata and controls
26 lines (23 loc) · 812 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
26
module github.com/absmach/coap-cli
go 1.25.0
require (
github.com/fatih/color v1.18.0
github.com/pion/dtls/v3 v3.0.7
github.com/plgd-dev/go-coap/v3 v3.4.0
github.com/spf13/cobra v1.10.1
)
require (
github.com/dsnet/golib/memfile v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pion/logging v0.2.4 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/spf13/pflag v1.0.10 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
)