mirror of
https://github.com/Kalit31/AR-Video-Streaming-over-WebRTC.git
synced 2025-09-26 19:41:15 +08:00
60 lines
2.4 KiB
Modula-2
60 lines
2.4 KiB
Modula-2
module websocket_tests
|
|
|
|
go 1.22.6
|
|
|
|
require (
|
|
github.com/asticode/go-astiav v0.24.0
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/pion/webrtc/v3 v3.3.3
|
|
)
|
|
|
|
require (
|
|
fyne.io/fyne/v2 v2.5.2 // indirect
|
|
gioui.org v0.2.0 // indirect
|
|
gioui.org/cpu v0.0.0-20220412190645-f1e9e8c3b1f7 // indirect
|
|
gioui.org/shader v1.0.6 // indirect
|
|
gioui.org/x v0.2.0 // indirect
|
|
git.sr.ht/~sbinet/gg v0.6.0 // indirect
|
|
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
|
|
github.com/andybalholm/stroke v0.0.0-20221221101821-bd29b49d73f0 // indirect
|
|
github.com/asticode/go-astikit v0.42.0 // indirect
|
|
github.com/campoy/embedmd v1.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-fonts/liberation v0.3.3 // indirect
|
|
github.com/go-latex/latex v0.0.0-20240709081214-31cef3c7570e // indirect
|
|
github.com/go-pdf/fpdf v0.9.0 // indirect
|
|
github.com/go-text/typesetting v0.2.0 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/google/uuid v1.3.1 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/pion/datachannel v1.5.8 // indirect
|
|
github.com/pion/dtls/v2 v2.2.12 // indirect
|
|
github.com/pion/ice/v2 v2.3.35 // indirect
|
|
github.com/pion/interceptor v0.1.29 // 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/rtcp v1.2.14 // indirect
|
|
github.com/pion/rtp v1.8.7 // indirect
|
|
github.com/pion/sctp v1.8.19 // indirect
|
|
github.com/pion/sdp/v3 v3.0.9 // indirect
|
|
github.com/pion/srtp/v2 v2.0.20 // indirect
|
|
github.com/pion/stun v0.6.1 // indirect
|
|
github.com/pion/transport/v2 v2.2.10 // indirect
|
|
github.com/pion/turn/v2 v2.1.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/testify v1.9.0 // indirect
|
|
github.com/wlynxg/anet v0.0.3 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
|
|
golang.org/x/exp/shiny v0.0.0-20241009180824-f66d83c29e7c // indirect
|
|
golang.org/x/image v0.21.0 // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
gonum.org/v1/plot v0.15.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
rsc.io/pdf v0.1.1 // indirect
|
|
)
|