-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
182 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,101 @@ | ||
module github.com/cyverse/qms | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
toolchain go1.22.2 | ||
|
||
require ( | ||
github.com/cyverse-de/echo-middleware/v2 v2.0.2 | ||
github.com/cyverse-de/echo-middleware/v2 v2.0.3 | ||
github.com/labstack/gommon v0.4.2 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
gorm.io/driver/postgres v1.5.6 | ||
gorm.io/gorm v1.25.7 | ||
gorm.io/driver/postgres v1.5.9 | ||
gorm.io/gorm v1.25.11 | ||
) | ||
|
||
require ( | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/cyverse-de/dbutil v1.0.1 | ||
github.com/lib/pq v1.10.9 | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/crypto v0.27.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/cyverse-de/go-mod/cfg v0.0.1 | ||
github.com/cyverse-de/go-mod/logging v0.0.2 | ||
github.com/cyverse-de/go-mod/otelutils v0.0.3 | ||
github.com/cyverse-de/go-mod/pbinit v0.1.11 | ||
github.com/cyverse-de/go-mod/protobufjson v0.0.3 | ||
github.com/cyverse-de/go-mod/cfg v0.0.2 | ||
github.com/cyverse-de/go-mod/logging v0.0.3 | ||
github.com/cyverse-de/go-mod/otelutils v0.0.4 | ||
github.com/cyverse-de/go-mod/pbinit v0.1.12 | ||
github.com/cyverse-de/go-mod/protobufjson v0.0.4 | ||
github.com/cyverse-de/p/go/qms v0.1.13 | ||
github.com/go-playground/validator/v10 v10.19.0 | ||
github.com/golang-migrate/migrate/v4 v4.17.0 | ||
github.com/labstack/echo/v4 v4.11.4 | ||
github.com/go-playground/validator/v10 v10.22.0 | ||
github.com/golang-migrate/migrate/v4 v4.17.1 | ||
github.com/labstack/echo/v4 v4.12.0 | ||
github.com/spirosoik/echo-logrus v1.0.0 | ||
github.com/uptrace/opentelemetry-go-extra/otelgorm v0.2.3 | ||
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.49.0 | ||
github.com/uptrace/opentelemetry-go-extra/otelgorm v0.3.1 | ||
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.54.0 | ||
) | ||
|
||
require ( | ||
github.com/cyverse-de/go-mod/gotelnats v0.0.11 // indirect | ||
github.com/cyverse-de/p v0.0.0-20240228001927-426a6bd80191 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/cyverse-de/go-mod/gotelnats v0.0.12 // indirect | ||
github.com/cyverse-de/p v0.0.0-20240820230617-9e063fe10de8 // indirect | ||
github.com/cyverse-de/p/go/analysis v0.0.16 // indirect | ||
github.com/cyverse-de/p/go/containers v0.0.2 // indirect | ||
github.com/cyverse-de/p/go/header v0.0.4 // indirect | ||
github.com/cyverse-de/p/go/monitoring v0.0.5 // indirect | ||
github.com/cyverse-de/p/go/svcerror v0.0.8 // indirect | ||
github.com/cyverse-de/p/go/user v0.0.11 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.5 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // 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/google/uuid v1.6.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/jackc/pgx/v5 v5.5.4 // indirect | ||
github.com/jackc/pgx/v5 v5.6.0 // indirect | ||
github.com/jackc/puddle/v2 v2.2.1 // indirect | ||
github.com/joho/godotenv v1.5.1 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/knadh/koanf v1.5.0 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/nats-io/nats.go v1.33.1 // indirect | ||
github.com/nats-io/nats.go v1.37.0 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/uptrace/opentelemetry-go-extra/otelsql v0.2.3 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
github.com/uptrace/opentelemetry-go-extra/otelsql v0.3.1 // indirect | ||
go.opentelemetry.io/otel v1.29.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.29.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.29.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.29.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.3.1 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/time v0.6.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/grpc v1.66.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.