-
-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (28 loc) · 938 Bytes
/
go.mod
File metadata and controls
32 lines (28 loc) · 938 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
27
28
29
30
31
32
module github.com/plgd-dev/go-coap/v3
go 1.20
require (
github.com/dsnet/golib/memfile v1.0.0
github.com/pion/dtls/v3 v3.0.7
github.com/stretchr/testify v1.11.1
go.uber.org/atomic v1.11.0
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
golang.org/x/net v0.35.0
golang.org/x/sync v0.11.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pion/logging v0.2.4 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/sys v0.30.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
// pin versions to keep go1.20 support
replace (
golang.org/x/crypto => golang.org/x/crypto v0.33.0
golang.org/x/exp => golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
golang.org/x/net => golang.org/x/net v0.35.0
golang.org/x/sync => golang.org/x/sync v0.11.0
golang.org/x/sys => golang.org/x/sys v0.30.0
)