mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 05:26:09 +05:00
62 lines
2.7 KiB
Modula-2
62 lines
2.7 KiB
Modula-2
module server
|
|
|
|
replace (
|
|
github.com/anacrolix/dht v1.0.1 => github.com/YouROK/dht v0.0.0-20210323193211-11c03221cb67
|
|
github.com/anacrolix/torrent v1.2.6 => github.com/yourok/torrent v0.0.0-20210427182412-1ef78c0fb02c
|
|
)
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/alexflint/go-arg v1.3.0
|
|
github.com/anacrolix/missinggo v1.1.0
|
|
github.com/anacrolix/torrent v1.2.6
|
|
github.com/gin-contrib/cors v1.3.1
|
|
github.com/gin-contrib/location v0.0.2
|
|
github.com/gin-gonic/gin v1.6.3
|
|
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
|
|
github.com/pkg/errors v0.8.1
|
|
go.etcd.io/bbolt v1.3.5
|
|
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
|
|
)
|
|
|
|
require (
|
|
github.com/RoaringBitmap/roaring v0.4.17 // indirect
|
|
github.com/alexflint/go-scalar v1.0.0 // indirect
|
|
github.com/anacrolix/dht v1.0.1 // indirect
|
|
github.com/anacrolix/log v0.2.0 // indirect
|
|
github.com/anacrolix/sync v0.0.0-20180808010631-44578de4e778 // indirect
|
|
github.com/anacrolix/utp v0.0.0-20180219060659-9e0e1d1d0572 // indirect
|
|
github.com/bradfitz/iter v0.0.0-20190303215204-33e6a9893b0c // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/edsrzf/mmap-go v1.0.0 // indirect
|
|
github.com/elgatito/upnp v0.0.0-20180711183757-2f244d205f9a // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.2.0 // indirect
|
|
github.com/golang/protobuf v1.3.3 // indirect
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect
|
|
github.com/huandu/xstrings v1.2.0 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae // indirect
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
|
|
github.com/philhofer/fwd v1.0.0 // indirect
|
|
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/tinylib/msgp v1.1.0 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
github.com/willf/bitset v1.1.10 // indirect
|
|
github.com/willf/bloom v2.0.3+incompatible // indirect
|
|
golang.org/x/net v0.0.0-20190318221613-d196dffd7c2b // indirect
|
|
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 // indirect
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
|
)
|