56 lines
2.1 KiB
Modula-2
56 lines
2.1 KiB
Modula-2
module git.jeffthecoder.xyz/public/chat-signaling-server
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/charmbracelet/bubbles v0.15.0
|
|
github.com/charmbracelet/bubbletea v0.23.1
|
|
github.com/charmbracelet/lipgloss v0.6.0
|
|
github.com/pion/webrtc/v3 v3.1.56
|
|
github.com/redis/go-redis/v9 v9.0.2
|
|
golang.org/x/sync v0.1.0
|
|
google.golang.org/grpc v1.53.0
|
|
google.golang.org/protobuf v1.28.1
|
|
)
|
|
|
|
require (
|
|
github.com/atotto/clipboard v0.1.4 // indirect
|
|
github.com/aymanbagabas/go-osc52 v1.0.3 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/containerd/console v1.0.3 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
|
github.com/muesli/termenv v0.13.0 // indirect
|
|
github.com/pion/datachannel v1.5.5 // indirect
|
|
github.com/pion/dtls/v2 v2.2.6 // indirect
|
|
github.com/pion/ice/v2 v2.3.1 // indirect
|
|
github.com/pion/interceptor v0.1.12 // indirect
|
|
github.com/pion/logging v0.2.2 // indirect
|
|
github.com/pion/mdns v0.0.7 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/rtcp v1.2.10 // indirect
|
|
github.com/pion/rtp v1.7.13 // indirect
|
|
github.com/pion/sctp v1.8.6 // indirect
|
|
github.com/pion/sdp/v3 v3.0.6 // indirect
|
|
github.com/pion/srtp/v2 v2.0.12 // indirect
|
|
github.com/pion/stun v0.4.0 // indirect
|
|
github.com/pion/transport/v2 v2.0.2 // indirect
|
|
github.com/pion/turn/v2 v2.1.0 // indirect
|
|
github.com/pion/udp/v2 v2.0.1 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/term v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
|
|
)
|