68 lines
2.6 KiB
Modula-2
68 lines
2.6 KiB
Modula-2
module github.com/m1k1o/neko/server
|
|
|
|
go 1.24.0
|
|
|
|
toolchain go1.24.5
|
|
|
|
require (
|
|
github.com/PaesslerAG/gval v1.2.4
|
|
github.com/fsnotify/fsnotify v1.9.0
|
|
github.com/go-chi/chi v1.5.5
|
|
github.com/go-chi/cors v1.2.2
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/kataras/go-events v0.0.3
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/pion/ice/v2 v2.3.38
|
|
github.com/pion/interceptor v0.1.40
|
|
github.com/pion/logging v0.2.4
|
|
github.com/pion/rtcp v1.2.15
|
|
github.com/pion/webrtc/v3 v3.3.6
|
|
github.com/prometheus/client_golang v1.23.0
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/spf13/cobra v1.9.1
|
|
github.com/spf13/viper v1.20.1
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/pion/datachannel v1.5.10 // indirect
|
|
github.com/pion/dtls/v2 v2.2.12 // indirect
|
|
github.com/pion/mdns v0.0.12 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/rtp v1.8.21 // indirect
|
|
github.com/pion/sctp v1.8.39 // indirect
|
|
github.com/pion/sdp/v3 v3.0.15 // 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/transport/v3 v3.0.7 // indirect
|
|
github.com/pion/turn/v2 v2.1.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/common v0.65.0 // indirect
|
|
github.com/prometheus/procfs v0.17.0 // indirect
|
|
github.com/sagikazarmark/locafero v0.10.0 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
|
|
github.com/spf13/afero v1.14.0 // indirect
|
|
github.com/spf13/cast v1.9.2 // indirect
|
|
github.com/spf13/pflag v1.0.7 // indirect
|
|
github.com/stretchr/testify v1.10.0 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/wlynxg/anet v0.0.5 // indirect
|
|
golang.org/x/crypto v0.40.0 // indirect
|
|
golang.org/x/net v0.42.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
golang.org/x/text v0.27.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|