-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17d1594
commit fccdead
Showing
5 changed files
with
118 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,50 @@ | ||
module github.com/teonet-go/teogw | ||
|
||
go 1.19 | ||
go 1.23.4 | ||
|
||
// replace github.com/teonet-go/teowebrtc_server => ../teowebrtc_server | ||
// replace github.com/teonet-go/teowebrtc_client => ../teowebrtc_client | ||
|
||
require ( | ||
github.com/kirill-scherba/bslice v0.0.2 | ||
github.com/teonet-go/teomon v0.5.14 | ||
github.com/teonet-go/teonet v0.6.0 | ||
github.com/teonet-go/teowebrtc_server v0.0.21 | ||
github.com/teonet-go/tru v0.0.16 | ||
github.com/teonet-go/teonet v0.6.6 | ||
github.com/teonet-go/teowebrtc_server v0.2.0 | ||
github.com/teonet-go/tru v0.0.18 | ||
) | ||
|
||
require ( | ||
github.com/coder/websocket v1.8.12 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/denisbrodbeck/machineid v1.0.1 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/kirill-scherba/stable v0.0.8 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // 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.6 // indirect | ||
github.com/pion/interceptor v0.1.17 // 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.36 // indirect | ||
github.com/pion/interceptor v0.1.29 // indirect | ||
github.com/pion/logging v0.2.2 // indirect | ||
github.com/pion/mdns v0.0.7 // indirect | ||
github.com/pion/mdns v0.0.12 // 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.7 // indirect | ||
github.com/pion/sdp/v3 v3.0.6 // indirect | ||
github.com/pion/srtp/v2 v2.0.15 // indirect | ||
github.com/pion/stun v0.6.0 // indirect | ||
github.com/pion/transport/v2 v2.2.1 // indirect | ||
github.com/pion/turn/v2 v2.1.0 // indirect | ||
github.com/pion/webrtc/v3 v3.2.9 // 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/pion/webrtc/v3 v3.3.5 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
github.com/teonet-go/teowebrtc_client v0.0.15 // indirect | ||
github.com/teonet-go/teowebrtc_log v0.0.1 // indirect | ||
github.com/teonet-go/teowebrtc_signal v0.0.8 // indirect | ||
github.com/teonet-go/teowebrtc_signal_client v0.0.9 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/teonet-go/teowebrtc_client v0.2.0 // indirect | ||
github.com/teonet-go/teowebrtc_log v0.2.0 // indirect | ||
github.com/teonet-go/teowebrtc_signal v0.2.0 // indirect | ||
github.com/teonet-go/teowebrtc_signal_client v0.2.0 // indirect | ||
github.com/wlynxg/anet v0.0.3 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
nhooyr.io/websocket v1.8.7 // indirect | ||
) |
Oops, something went wrong.