customer/go.mod

74 lines
3.2 KiB
Modula-2
Raw Normal View History

2024-11-18 07:23:41 +00:00
module gitea.pena/PenaSide/customer
2023-05-16 01:12:07 +00:00
2024-08-03 13:05:13 +00:00
go 1.22.0
2023-05-16 01:12:07 +00:00
require (
gitea.pena/PenaSide/linters-golang v0.0.0-20241114215743-9a8e7d58cf96
2024-02-22 23:53:53 +00:00
github.com/go-resty/resty/v2 v2.11.0
github.com/gofiber/fiber/v2 v2.52.1
github.com/golang-jwt/jwt/v5 v5.2.0
2023-06-13 22:41:33 +00:00
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
2023-05-16 01:12:07 +00:00
github.com/joho/godotenv v1.5.1
2024-02-22 23:53:53 +00:00
github.com/labstack/echo/v4 v4.11.4
2024-04-15 12:12:21 +00:00
github.com/pioz/faker v1.7.3
2024-02-22 23:53:53 +00:00
github.com/sethvargo/go-envconfig v1.0.0
2023-09-14 10:02:32 +00:00
github.com/stretchr/testify v1.8.4
github.com/themakers/hlog v0.0.0-20191205140925-235e0e4baddf
2024-02-22 23:53:53 +00:00
github.com/twmb/franz-go v1.16.1
github.com/twmb/franz-go/pkg/kadm v1.11.0
go.mongodb.org/mongo-driver v1.14.0
go.uber.org/zap v1.27.0
2024-07-03 19:48:56 +00:00
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
2024-07-22 12:34:16 +00:00
gopkg.in/tucnak/telebot.v2 v2.5.0
2024-06-07 20:23:16 +00:00
penahub.gitlab.yandexcloud.net/backend/penahub_common v0.0.0-20240607202348-efe5f2bf3e8c
penahub.gitlab.yandexcloud.net/backend/quiz/common.git v0.0.0-20240520145524-451212248881
2024-08-03 13:01:30 +00:00
penahub.gitlab.yandexcloud.net/external/trashlog v0.1.5
2023-05-16 01:12:07 +00:00
)
require (
github.com/ClickHouse/clickhouse-go v1.5.4 // indirect
2024-02-22 23:53:53 +00:00
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cloudflare/golz4 v0.0.0-20150217214814-ef862a3cdc58 // indirect
2023-05-16 01:12:07 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2024-07-03 19:48:56 +00:00
github.com/golang/protobuf v1.5.4 // indirect
2023-05-16 01:12:07 +00:00
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
2024-02-22 23:53:53 +00:00
github.com/google/uuid v1.6.0 // indirect
github.com/klauspost/compress v1.17.7 // indirect
2024-05-20 12:32:59 +00:00
github.com/kr/pretty v0.3.1 // indirect
2024-02-22 23:53:53 +00:00
github.com/labstack/gommon v0.4.2 // indirect
2023-05-16 01:12:07 +00:00
github.com/mattn/go-colorable v0.1.13 // indirect
2024-02-02 12:15:03 +00:00
github.com/mattn/go-isatty v0.0.20 // indirect
2024-02-05 11:13:36 +00:00
github.com/mattn/go-runewidth v0.0.15 // indirect
2024-02-22 23:53:53 +00:00
github.com/montanaflynn/stats v0.7.1 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/pkg/errors v0.9.1 // indirect
2023-05-16 01:12:07 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-02-22 23:53:53 +00:00
github.com/rivo/uniseg v0.4.7 // indirect
2024-05-20 12:32:59 +00:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/rs/xid v1.5.0 // indirect
github.com/skeris/appInit v1.0.2 // indirect
github.com/tealeg/xlsx v1.0.5 // indirect
2024-02-22 23:53:53 +00:00
github.com/twmb/franz-go/pkg/kmsg v1.7.0 // indirect
2023-05-16 01:12:07 +00:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
2024-02-22 23:53:53 +00:00
github.com/valyala/fasthttp v1.52.0 // indirect
2023-05-16 01:12:07 +00:00
github.com/valyala/fasttemplate v1.2.2 // indirect
2024-02-05 11:13:36 +00:00
github.com/valyala/tcplisten v1.0.0 // indirect
2023-05-16 01:12:07 +00:00
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
2024-02-02 12:15:03 +00:00
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
2024-02-22 23:53:53 +00:00
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
2024-07-03 19:48:56 +00:00
go.etcd.io/bbolt v1.3.10 // indirect
2023-05-17 20:27:09 +00:00
go.uber.org/multierr v1.11.0 // indirect
2024-08-03 12:04:47 +00:00
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/net v0.27.0 // indirect
2024-07-03 19:48:56 +00:00
golang.org/x/sync v0.7.0 // indirect
2024-08-03 12:04:47 +00:00
golang.org/x/sys v0.22.0 // indirect
2024-07-03 19:48:56 +00:00
golang.org/x/text v0.16.0 // indirect
2024-08-03 12:04:47 +00:00
google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf // indirect
2024-05-20 12:32:59 +00:00
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2023-05-16 01:12:07 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
penahub.gitlab.yandexcloud.net/devops/linters/golang.git v0.0.0-20240829220549-d35409b619a3 // indirect
2023-05-16 01:12:07 +00:00
)