92 lines
3.5 KiB
Modula-2
92 lines
3.5 KiB
Modula-2
module telesrv
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1
|
|
github.com/fxamacker/cbor/v2 v2.8.0
|
|
github.com/go-faster/errors v0.7.1
|
|
github.com/golang-migrate/migrate/v4 v4.19.1
|
|
github.com/gotd/ige v0.3.0
|
|
github.com/gotd/log/logzap v0.1.1
|
|
github.com/iamxvbaba/td v1.2.0
|
|
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
|
|
github.com/jackc/pgx/v5 v5.9.2
|
|
github.com/lestrrat-go/jwx/v3 v3.1.1
|
|
github.com/pion/datachannel v1.6.2
|
|
github.com/pion/dtls/v3 v3.1.5
|
|
github.com/pion/ice/v4 v4.3.0
|
|
github.com/pion/logging v0.2.4
|
|
github.com/pion/rtcp v1.2.17
|
|
github.com/pion/rtp v1.10.4
|
|
github.com/pion/sctp v1.11.0
|
|
github.com/pion/srtp/v3 v3.0.12
|
|
github.com/pion/transport/v4 v4.0.2
|
|
github.com/pion/turn/v5 v5.0.12
|
|
github.com/redis/go-redis/v9 v9.20.0
|
|
github.com/yutopp/go-rtmp v0.0.7
|
|
go.uber.org/multierr v1.11.0
|
|
go.uber.org/zap v1.28.0
|
|
golang.org/x/crypto v0.54.0
|
|
golang.org/x/image v0.31.0
|
|
golang.org/x/net v0.57.0
|
|
golang.org/x/sync v0.22.0
|
|
golang.org/x/text v0.40.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.2.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/coder/websocket v1.8.15 // indirect
|
|
github.com/dlclark/regexp2 v1.12.0 // indirect
|
|
github.com/fatih/color v1.19.0 // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-faster/jx v1.2.0 // indirect
|
|
github.com/go-faster/xor v1.0.0 // indirect
|
|
github.com/go-faster/yaml v0.4.6 // indirect
|
|
github.com/goccy/go-json v0.10.6 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gotd/log v0.1.0 // indirect
|
|
github.com/gotd/neo v0.1.5 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/klauspost/compress v1.19.1 // indirect
|
|
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
|
|
github.com/lestrrat-go/dsig v1.2.1 // indirect
|
|
github.com/lestrrat-go/dsig-secp256k1 v1.0.0 // indirect
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
|
github.com/lestrrat-go/httprc/v3 v3.0.5 // indirect
|
|
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.15 // indirect
|
|
github.com/mattn/go-isatty v0.0.22 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.1 // indirect
|
|
github.com/ogen-go/ogen v1.23.0 // indirect
|
|
github.com/pion/mdns/v2 v2.1.0 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/stun/v3 v3.1.6 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/refraction-networking/utls v1.8.2 // indirect
|
|
github.com/segmentio/asm v1.2.1 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/valyala/fastjson v1.6.10 // indirect
|
|
github.com/wlynxg/anet v0.0.5 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/yuin/goldmark v1.8.4 // indirect
|
|
github.com/yutopp/go-amf0 v0.1.0 // indirect
|
|
go.opentelemetry.io/otel v1.44.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.44.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.44.0 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090 // indirect
|
|
golang.org/x/mod v0.38.0 // indirect
|
|
golang.org/x/sys v0.47.0 // indirect
|
|
golang.org/x/time v0.14.0 // indirect
|
|
golang.org/x/tools v0.48.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
rsc.io/qr v0.2.0 // indirect
|
|
)
|