2022-03-20 23:27:41 +13:00
|
|
|
module gitlab.com/demodesk/neko/server
|
2020-10-23 03:54:50 +13:00
|
|
|
|
2021-09-01 04:42:06 +12:00
|
|
|
go 1.17
|
2020-10-23 03:54:50 +13:00
|
|
|
|
|
|
|
require (
|
2021-12-03 09:41:53 +13:00
|
|
|
github.com/PaesslerAG/gval v1.1.2
|
2021-03-19 09:08:55 +13:00
|
|
|
github.com/go-chi/chi v1.5.4
|
2021-05-01 01:24:49 +12:00
|
|
|
github.com/go-chi/cors v1.2.0
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
|
|
|
github.com/kataras/go-events v0.0.3
|
|
|
|
github.com/pion/ice/v2 v2.2.2
|
|
|
|
github.com/pion/interceptor v0.1.10
|
2020-10-23 03:54:50 +13:00
|
|
|
github.com/pion/logging v0.2.2
|
2021-12-03 09:41:53 +13:00
|
|
|
github.com/pion/rtcp v1.2.9
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/pion/webrtc/v3 v3.1.27
|
2022-01-18 07:39:15 +13:00
|
|
|
github.com/rs/zerolog v1.26.1
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/spf13/cobra v1.4.0
|
2022-01-18 07:39:15 +13:00
|
|
|
github.com/spf13/viper v1.10.1
|
2021-09-02 05:45:21 +12:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
2021-12-03 09:41:53 +13:00
|
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
2021-09-10 06:38:21 +12:00
|
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
2021-12-03 09:41:53 +13:00
|
|
|
github.com/pion/datachannel v1.5.2 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/pion/dtls/v2 v2.1.3 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
github.com/pion/mdns v0.0.5 // indirect
|
|
|
|
github.com/pion/randutil v0.1.0 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/pion/rtp v1.7.9 // indirect
|
2022-01-18 07:39:15 +13:00
|
|
|
github.com/pion/sctp v1.8.2 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
github.com/pion/sdp/v3 v3.0.4 // indirect
|
|
|
|
github.com/pion/srtp/v2 v2.0.5 // indirect
|
|
|
|
github.com/pion/stun v0.3.5 // indirect
|
2022-01-18 07:39:15 +13:00
|
|
|
github.com/pion/transport v0.13.0 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/pion/turn/v2 v2.0.8 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
github.com/pion/udp v0.1.1 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
github.com/spf13/afero v1.8.2 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
|
2021-08-16 02:54:50 +12:00
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
2022-03-24 00:07:56 +13:00
|
|
|
gopkg.in/ini.v1 v1.66.4 // indirect
|
2021-09-02 05:45:21 +12:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2020-10-23 03:54:50 +13:00
|
|
|
)
|