mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
33 lines
1.2 KiB
Modula-2
33 lines
1.2 KiB
Modula-2
module scheduled_tasks
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/getsentry/sentry-go v0.15.0
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/jackc/pgx/v4 v4.16.1
|
|
github.com/prometheus/client_golang v1.20.5
|
|
golang.org/x/text v0.16.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.12.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.11.0 // indirect
|
|
github.com/jackc/puddle v1.2.1 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
golang.org/x/crypto v0.24.0 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|