mirror of
https://github.com/sot-tech/mochi.git
synced 2026-04-28 00:20:01 -07:00
* change github.com/SermoDigital/jose to github.com/golang-jwt/jwt * remove pkg/errors dependency * update dependencies TODO: * add test * flag if announce/scrape handle needed
56 lines
2.3 KiB
Modula-2
56 lines
2.3 KiB
Modula-2
module github.com/sot-tech/mochi
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
code.cloudfoundry.org/go-diodes v0.0.0-20220725190411-383eb6634c40
|
|
github.com/MicahParks/keyfunc v1.2.2
|
|
github.com/anacrolix/torrent v1.46.0
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/golang-jwt/jwt/v4 v4.4.2
|
|
github.com/jackc/pgx/v4 v4.17.0
|
|
github.com/julienschmidt/httprouter v1.3.0
|
|
github.com/libp2p/go-reuseport v0.2.0
|
|
github.com/minio/sha256-simd v1.0.0
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/prometheus/client_golang v1.13.0
|
|
github.com/rs/zerolog v1.27.0
|
|
github.com/stretchr/testify v1.8.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/anacrolix/dht/v2 v2.18.0 // indirect
|
|
github.com/anacrolix/log v0.13.2-0.20220426014722-7b7d13a55d55 // indirect
|
|
github.com/anacrolix/missinggo v1.3.0 // indirect
|
|
github.com/anacrolix/missinggo/v2 v2.7.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/huandu/xstrings v1.3.2 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.13.0 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.12.0 // indirect
|
|
github.com/jackc/puddle v1.2.1 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
|
|
golang.org/x/sys v0.0.0-20220817070843-5a390386f1f2 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
)
|