62 lines
2.5 KiB
Modula-2
62 lines
2.5 KiB
Modula-2
module borodyadka.dev/borodyadka/minireader
|
|
|
|
go 1.21.1
|
|
|
|
require (
|
|
github.com/go-playground/validator/v10 v10.16.0
|
|
github.com/gofiber/contrib/jwt v1.0.7
|
|
github.com/gofiber/fiber/v2 v2.50.0
|
|
github.com/golang-jwt/jwt/v5 v5.0.0
|
|
github.com/jackc/pgx/v5 v5.4.3
|
|
github.com/mmcdole/gofeed v1.2.1
|
|
github.com/pressly/goose/v3 v3.15.1
|
|
github.com/samber/slog-fiber v1.6.0
|
|
github.com/samber/slog-loki v1.0.0
|
|
github.com/sethvargo/go-envconfig v0.9.0
|
|
github.com/stretchr/testify v1.8.2
|
|
golang.org/x/sync v0.4.0
|
|
gopkg.in/guregu/null.v4 v4.0.0
|
|
)
|
|
|
|
require (
|
|
github.com/MicahParks/keyfunc/v2 v2.1.0 // indirect
|
|
github.com/PuerkitoBio/goquery v1.8.0 // indirect
|
|
github.com/afiskon/promtail-client v0.0.0-20190305142237-506f3f921e9c // indirect
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/uuid v1.4.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.17.0 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/mmcdole/goxpp v1.1.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/samber/lo v1.38.1 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.50.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/crypto v0.13.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
golang.org/x/text v0.13.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|