mirror of
https://github.com/screego/server.git
synced 2026-09-01 15:36:58 +08:00
48 lines
1.8 KiB
Modula-2
48 lines
1.8 KiB
Modula-2
module github.com/screego/server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/gorilla/handlers v1.5.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/sessions v1.2.1
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
|
github.com/magiconair/properties v1.8.5
|
|
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
|
|
github.com/pion/randutil v0.1.0
|
|
github.com/pion/turn/v2 v2.0.5
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/rs/xid v1.3.0
|
|
github.com/rs/zerolog v1.26.0
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/urfave/cli v1.22.5
|
|
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
|
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
|
github.com/golang/protobuf v1.4.3 // indirect
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
|
github.com/kr/pretty v0.2.0 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/pion/logging v0.2.2 // indirect
|
|
github.com/pion/stun v0.3.5 // indirect
|
|
github.com/pion/transport v0.10.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.0.1 // indirect
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
|
|
google.golang.org/protobuf v1.26.0-rc.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|