mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-20 15:19:08 -06:00
* feat: google sso * chore: update prompt text * fix: compiling and lint errors * chore: regenerate sqlc * chore: address PR comments
108 lines
4.4 KiB
Modula-2
108 lines
4.4 KiB
Modula-2
module github.com/hatchet-dev/hatchet
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/Masterminds/semver/v3 v3.2.1
|
|
github.com/creasty/defaults v1.7.0
|
|
github.com/fatih/color v1.16.0
|
|
github.com/getkin/kin-openapi v0.122.0
|
|
github.com/go-co-op/gocron/v2 v2.1.2
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/sessions v1.2.2
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
|
github.com/jackc/pgx/v5 v5.5.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/labstack/echo/v4 v4.11.3
|
|
github.com/oapi-codegen/runtime v1.1.0
|
|
github.com/shopspring/decimal v1.3.1
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/spf13/viper v1.16.0
|
|
github.com/steebchen/prisma-client-go v0.32.1
|
|
go.opentelemetry.io/otel v1.21.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0
|
|
go.opentelemetry.io/otel/sdk v1.21.0
|
|
go.opentelemetry.io/otel/trace v1.21.0
|
|
sigs.k8s.io/yaml v1.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/go-logr/logr v1.3.0 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.6 // indirect
|
|
github.com/go-openapi/swag v0.22.4 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/invopop/yaml v0.2.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/jonboulle/clockwork v0.4.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/labstack/gommon v0.4.0 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
|
github.com/perimeterx/marshmallow v1.1.5 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
go.opentelemetry.io/otel/metric v1.21.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
|
|
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 // indirect
|
|
golang.org/x/time v0.3.0 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/getsentry/sentry-go v0.25.0
|
|
github.com/go-chi/chi v1.5.5
|
|
github.com/go-playground/validator/v10 v10.16.0
|
|
github.com/go-test/deep v1.1.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/uuid v1.5.0
|
|
github.com/gorilla/schema v1.2.1
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rabbitmq/amqp091-go v1.9.0
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/rs/zerolog v1.31.0
|
|
github.com/slack-go/slack v0.12.3
|
|
github.com/spf13/afero v1.10.0 // indirect
|
|
github.com/spf13/cast v1.5.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
golang.org/x/crypto v0.18.0
|
|
golang.org/x/net v0.20.0 // indirect
|
|
golang.org/x/oauth2 v0.16.0
|
|
golang.org/x/sync v0.4.0
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
|
|
google.golang.org/grpc v1.59.0
|
|
google.golang.org/protobuf v1.31.0
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|