mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
70 lines
2.6 KiB
Modula-2
70 lines
2.6 KiB
Modula-2
module github.com/demodesk/neko
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/PaesslerAG/gval v1.2.1
|
|
github.com/go-chi/chi v1.5.4
|
|
github.com/go-chi/cors v1.2.1
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/kataras/go-events v0.0.3
|
|
github.com/pion/ice/v2 v2.2.12
|
|
github.com/pion/interceptor v0.1.12
|
|
github.com/pion/logging v0.2.2
|
|
github.com/pion/rtcp v1.2.10
|
|
github.com/pion/webrtc/v3 v3.1.49
|
|
github.com/prometheus/client_golang v1.14.0
|
|
github.com/rs/zerolog v1.28.0
|
|
github.com/spf13/cobra v1.6.1
|
|
github.com/spf13/viper v1.14.0
|
|
github.com/stretchr/testify v1.8.1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
|
github.com/pion/datachannel v1.5.2 // indirect
|
|
github.com/pion/dtls/v2 v2.1.5 // indirect
|
|
github.com/pion/mdns v0.0.5 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/rtp v1.7.13 // indirect
|
|
github.com/pion/sctp v1.8.3 // indirect
|
|
github.com/pion/sdp/v3 v3.0.6 // indirect
|
|
github.com/pion/srtp/v2 v2.0.10 // indirect
|
|
github.com/pion/stun v0.3.5 // indirect
|
|
github.com/pion/transport v0.13.1 // indirect
|
|
github.com/pion/turn/v2 v2.0.8 // indirect
|
|
github.com/pion/udp v0.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
github.com/spf13/afero v1.9.2 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2 // indirect
|
|
golang.org/x/net v0.1.0 // indirect
|
|
golang.org/x/sys v0.1.0 // indirect
|
|
golang.org/x/text v0.4.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|