-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathgo.mod
50 lines (46 loc) · 1.7 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module github.com/pion/example-webrtc-applications/v3
go 1.21
toolchain go1.22.1
require (
github.com/at-wat/ebml-go v0.17.1
github.com/emiago/sipgo v0.19.0
github.com/google/uuid v1.5.0
github.com/gorilla/websocket v1.5.1
github.com/notedit/janus-go v0.0.0-20210115013133-fdce1b146d0e
github.com/pion/rtcp v1.2.14
github.com/pion/rtp v1.8.4
github.com/pion/sdp/v3 v3.0.8
github.com/pion/webrtc/v3 v3.2.29
gocv.io/x/gocv v0.35.0
golang.org/x/image v0.14.0
golang.org/x/net v0.20.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.2.1 // indirect
github.com/icholy/digest v0.1.22 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/pion/datachannel v1.5.5 // indirect
github.com/pion/dtls/v2 v2.2.7 // indirect
github.com/pion/ice/v2 v2.3.13 // indirect
github.com/pion/interceptor v0.1.25 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/mdns v0.0.12 // indirect
github.com/pion/randutil v0.1.0 // indirect
github.com/pion/sctp v1.8.12 // indirect
github.com/pion/srtp/v2 v2.0.18 // indirect
github.com/pion/stun v0.6.1 // indirect
github.com/pion/transport/v2 v2.2.3 // indirect
github.com/pion/turn/v2 v2.1.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/xid v1.4.0 // indirect
github.com/rs/zerolog v1.28.0 // indirect
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sys v0.16.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)