relay/go.mod

107 lines
4.7 KiB
Modula-2
Raw Normal View History

module github.com/feditools/relay
go 1.18
require (
github.com/contribsys/faktory v1.6.1
2022-07-18 03:41:04 +00:00
github.com/contribsys/faktory_worker_go v1.6.0
2022-08-11 03:47:37 +00:00
github.com/feditools/go-lib v0.16.0
2022-07-18 03:41:04 +00:00
github.com/go-fed/activity v1.0.0
2022-04-27 07:40:16 +00:00
github.com/go-fed/httpsig v1.1.0
2022-07-27 03:51:03 +00:00
github.com/go-http-utils/etag v0.0.0-20161124023236-513ea8f21eb1
github.com/go-playground/validator/v10 v10.11.0
github.com/go-redis/redis/v8 v8.11.5
2022-07-18 03:41:04 +00:00
github.com/google/uuid v1.3.0
2022-04-26 22:56:38 +00:00
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
2022-07-27 03:51:03 +00:00
github.com/gorilla/sessions v1.2.1
2022-07-18 03:41:04 +00:00
github.com/hashicorp/golang-lru v0.5.4
2022-08-10 17:13:27 +00:00
github.com/jackc/pgconn v1.13.0
github.com/jackc/pgx/v4 v4.17.0
2022-08-02 01:57:39 +00:00
github.com/nickname76/telegrambot v1.1.1
2022-08-11 03:47:37 +00:00
github.com/nicksnyder/go-i18n/v2 v2.2.0
2022-07-27 03:51:03 +00:00
github.com/rbcervilla/redisstore/v8 v8.1.0
github.com/sirupsen/logrus v1.9.0
2022-07-27 03:51:03 +00:00
github.com/speps/go-hashids/v2 v2.0.1
github.com/spf13/cobra v1.5.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.12.0
2022-07-27 03:51:03 +00:00
github.com/tdewolff/minify/v2 v2.12.0
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc
2022-07-29 19:47:09 +00:00
github.com/uptrace/bun v1.1.7
github.com/uptrace/bun/dialect/pgdialect v1.1.7
github.com/uptrace/bun/dialect/sqlitedialect v1.1.7
github.com/uptrace/bun/extra/bundebug v1.1.7
2022-08-05 21:39:03 +00:00
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2
2022-07-27 03:51:03 +00:00
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29
2022-08-11 03:47:37 +00:00
golang.org/x/text v0.3.7
gopkg.in/yaml.v2 v2.4.0
2022-07-27 03:51:03 +00:00
modernc.org/sqlite v1.17.1
)
require (
2022-08-02 01:57:39 +00:00
github.com/andybalholm/brotli v1.0.4 // indirect
2022-07-27 03:51:03 +00:00
github.com/cactus/go-statsd-client/v5 v5.0.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2022-07-27 03:51:03 +00:00
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fatih/color v1.13.0 // indirect
2022-07-27 03:51:03 +00:00
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
2022-07-27 03:51:03 +00:00
github.com/go-http-utils/fresh v0.0.0-20161124030543-7231e26a4b27 // indirect
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a // indirect
2022-04-26 22:56:38 +00:00
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
2022-07-27 03:51:03 +00:00
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
2022-08-10 17:13:27 +00:00
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
2022-08-10 17:13:27 +00:00
github.com/jackc/pgtype v1.12.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
2022-08-02 01:57:39 +00:00
github.com/json-iterator/go v1.1.12 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2022-08-02 01:57:39 +00:00
github.com/klauspost/compress v1.15.6 // indirect
2022-04-26 22:56:38 +00:00
github.com/leodido/go-urn v1.2.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
2022-04-26 22:56:38 +00:00
github.com/mattn/go-isatty v0.0.14 // indirect
2022-07-27 03:51:03 +00:00
github.com/mattn/go-mastodon v0.0.5-0.20211214115546-7745e19ff787 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
2022-08-02 01:57:39 +00:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nickname76/repeater v1.0.1 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/subosito/gotenv v1.3.0 // indirect
2022-07-27 03:51:03 +00:00
github.com/tdewolff/parse/v2 v2.6.1 // indirect
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect
2022-08-02 01:57:39 +00:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.38.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
2022-08-10 17:13:27 +00:00
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
2022-07-27 03:51:03 +00:00
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
2022-07-29 19:47:09 +00:00
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
2022-07-27 03:51:03 +00:00
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
2022-07-27 03:51:03 +00:00
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-07-27 03:51:03 +00:00
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.36.0 // indirect
modernc.org/ccgo/v3 v3.16.6 // indirect
modernc.org/libc v1.16.2 // indirect
modernc.org/mathutil v1.4.1 // indirect
2022-07-27 03:51:03 +00:00
modernc.org/memory v1.1.1 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/strutil v1.1.1 // indirect
modernc.org/token v1.0.0 // indirect
)