mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-18 16:47:42 +01:00
Could not for the life of me get any regex to properly strip the ANSI escape sequences, so the text log will have to suffer with them, but the ansihtml library is now used to render them into HTML.
78 lines
3.2 KiB
Modula-2
78 lines
3.2 KiB
Modula-2
module github.com/hrfee/jfa-go
|
|
|
|
go 1.16
|
|
|
|
replace github.com/hrfee/jfa-go/docs => ./docs
|
|
|
|
replace github.com/hrfee/jfa-go/common => ./common
|
|
|
|
replace github.com/hrfee/jfa-go/ombi => ./ombi
|
|
|
|
replace github.com/hrfee/jfa-go/logger => ./logger
|
|
|
|
replace github.com/hrfee/jfa-go/linecache => ./linecache
|
|
|
|
replace github.com/hrfee/jfa-go/api => ./api
|
|
|
|
require (
|
|
github.com/agiledragon/gomonkey/v2 v2.3.1 // indirect
|
|
github.com/bwmarrin/discordgo v0.27.1
|
|
github.com/bytedance/sonic v1.9.1 // indirect
|
|
github.com/emersion/go-autostart v0.0.0-20210130080809-00ed301c8e9a
|
|
github.com/fatih/color v1.15.0
|
|
github.com/fsnotify/fsnotify v1.6.0
|
|
github.com/getlantern/errors v1.0.3 // indirect
|
|
github.com/getlantern/golog v0.0.0-20230503153817-8e72de7e0a65 // indirect
|
|
github.com/getlantern/hidden v0.0.0-20220104173330-f221c5a24770 // indirect
|
|
github.com/getlantern/ops v0.0.0-20230519221840-1283e026181c // indirect
|
|
github.com/getlantern/systray v1.2.2
|
|
github.com/gin-contrib/pprof v1.4.0
|
|
github.com/gin-contrib/static v0.0.1
|
|
github.com/gin-gonic/gin v1.9.1
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/spec v0.20.9 // indirect
|
|
github.com/go-openapi/swag v0.22.4 // indirect
|
|
github.com/go-playground/validator/v10 v10.14.1 // indirect
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
|
|
github.com/go-test/deep v1.1.0 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/gomarkdown/markdown v0.0.0-20230322041520-c84983bdbf2a
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hrfee/jfa-go/common v0.0.0-20230421170108-d800b97f69b6
|
|
github.com/hrfee/jfa-go/docs v0.0.0-20230421170108-d800b97f69b6
|
|
github.com/hrfee/jfa-go/linecache v0.0.0-20230421170108-d800b97f69b6
|
|
github.com/hrfee/jfa-go/logger v0.0.0-20230421170108-d800b97f69b6
|
|
github.com/hrfee/jfa-go/ombi v0.0.0-20230421170108-d800b97f69b6
|
|
github.com/hrfee/mediabrowser v0.3.8
|
|
github.com/itchyny/timefmt-go v0.1.5
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
github.com/lithammer/shortuuid/v3 v3.0.7
|
|
github.com/mailgun/mailgun-go/v4 v4.9.0
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/otiai10/copy v1.7.0 // indirect
|
|
github.com/pborman/ansi v1.0.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/robert-nix/ansihtml v1.0.1 // indirect
|
|
github.com/steambap/captcha v1.4.1
|
|
github.com/swaggo/files v1.0.1
|
|
github.com/swaggo/gin-swagger v1.6.0
|
|
github.com/swaggo/swag v1.16.1 // indirect
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.11 // indirect
|
|
github.com/writeas/go-strip-markdown v2.0.1+incompatible
|
|
github.com/xhit/go-simple-mail/v2 v2.13.0
|
|
go.opentelemetry.io/otel v1.16.0 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.24.0 // indirect
|
|
golang.org/x/arch v0.3.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
|
|
golang.org/x/image v0.7.0 // indirect
|
|
golang.org/x/tools v0.9.3 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0
|
|
maunium.net/go/mautrix v0.15.2
|
|
)
|