mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-24 02:55:45 +00:00
* Disable CGO (C libs) for coordinator Needed for static linking. * Fix "error strings should not be capitalized (ST1005)" * Fix SA1015 Using time.Tick leaks the underlying ticker, consider using it only in endless functions, tests and the main package, and use time.NewTicker here (SA1015) * Fix SA9004 Only the first constant in this group has an explicit type (SA9004). * Remove unused code in the webrtc package * Fix S1000 Should use a simple channel send/receive instead of select with a single case (S1000). * Force dir creation/check for core downloader * Update Makefile release script * Disable ASLR for worker builds * Remove WORKER_BUILD_PARAMS flag from the CI * Don't force recompilation in release * Add Debian packages installer script * Build worker app without libopusfile * Test worker app without libopusfile * Add opus wrapper without opusfile * Make install.sh executable * Add opus lib in Win builds * Make insecure HTTPS requests when downloading libs * Add ca-certificates for Docker build stage go mod download works only with SSL certificates installed. * Move libx264 wrapper into the repo That way we can get rid of a lot of not needed external Go dependencies. * Update the dependencies
38 lines
1.5 KiB
Modula-2
Vendored
38 lines
1.5 KiB
Modula-2
Vendored
module github.com/giongto35/cloud-game/v2
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
cloud.google.com/go v0.81.0 // indirect
|
|
cloud.google.com/go/storage v1.14.0
|
|
github.com/cavaliercoder/grab v1.0.1-0.20201108051000-98a5bfe305ec
|
|
github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3
|
|
github.com/fsnotify/fsnotify v1.4.9
|
|
github.com/go-gl/gl v0.0.0-20210315015930-ae072cafe09d
|
|
github.com/gofrs/flock v0.8.0
|
|
github.com/gofrs/uuid v4.0.0+incompatible
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/kkyr/fig v0.2.0
|
|
github.com/mitchellh/mapstructure v1.4.1 // indirect
|
|
github.com/pelletier/go-toml v1.9.0 // indirect
|
|
github.com/pion/dtls/v2 v2.0.9 // indirect
|
|
github.com/pion/interceptor v0.0.12
|
|
github.com/pion/rtp v1.6.2
|
|
github.com/pion/webrtc/v3 v3.0.20
|
|
github.com/prometheus/client_golang v1.10.0
|
|
github.com/prometheus/common v0.20.0 // indirect
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/veandco/go-sdl2 v0.4.5
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
|
|
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
|
|
golang.org/x/mod v0.4.2 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 // indirect
|
|
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/genproto v0.0.0-20210405174219-a39eb2f71cb9 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|