-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
33 lines (30 loc) · 1 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
module github.com/coder-with-a-bushido/neralai
go 1.20
require (
github.com/aidarkhanov/nanoid v1.0.8
github.com/go-chi/chi v1.5.4
github.com/go-chi/cors v1.2.1
github.com/pion/ice/v2 v2.3.2
github.com/pion/interceptor v0.1.17
github.com/pion/rtp v1.7.13
github.com/pion/sdp/v3 v3.0.6
github.com/pion/webrtc/v3 v3.1.60
)
require (
github.com/google/uuid v1.3.0 // indirect
github.com/pion/datachannel v1.5.5 // indirect
github.com/pion/dtls/v2 v2.2.6 // 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/sctp v1.8.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.2.0 // indirect
github.com/pion/turn/v2 v2.1.0 // indirect
github.com/pion/udp/v2 v2.0.1 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.7.0 // indirect
)