godash/go.mod

53 lines
2 KiB
Modula-2
Raw Normal View History

2023-06-16 13:19:10 +02:00
module gitlab.unjx.de/flohoss/godash
2023-06-14 21:53:27 +02:00
2024-03-12 15:49:08 +01:00
go 1.22.0
2023-06-14 21:53:27 +02:00
require (
2024-03-18 21:54:35 +01:00
github.com/a-h/templ v0.2.639
2024-03-12 15:49:08 +01:00
github.com/caarlos0/env/v10 v10.0.0
2023-06-21 16:49:07 +02:00
github.com/dariubs/percent v1.0.0
2024-03-12 15:49:08 +01:00
github.com/go-playground/validator/v10 v10.19.0
github.com/labstack/echo/v4 v4.11.4
2023-06-21 16:49:07 +02:00
github.com/r3labs/sse/v2 v2.10.0
2024-03-12 15:49:08 +01:00
github.com/shirou/gopsutil v3.21.11+incompatible
2024-03-27 22:43:36 +01:00
github.com/zitadel/oidc/v3 v3.5.1
github.com/zitadel/zitadel-go/v3 v3.0.0-next.2
2023-06-21 17:19:21 +02:00
gopkg.in/yaml.v3 v3.0.1
2023-06-14 21:53:27 +02:00
)
require (
2023-10-26 11:10:03 +02:00
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2024-03-27 22:43:36 +01:00
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
2024-03-18 21:54:35 +01:00
github.com/go-ole/go-ole v1.3.0 // indirect
2023-06-16 13:19:10 +02:00
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
2023-06-21 17:19:21 +02:00
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
2024-03-27 22:43:36 +01:00
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.6.0 // indirect
2024-03-18 21:54:35 +01:00
github.com/gorilla/securecookie v1.1.2 // indirect
2024-03-27 22:43:36 +01:00
github.com/kr/pretty v0.3.1 // indirect
2024-03-12 15:49:08 +01:00
github.com/labstack/gommon v0.4.2 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
2023-06-21 17:19:21 +02:00
github.com/mattn/go-colorable v0.1.13 // indirect
2023-10-26 11:10:03 +02:00
github.com/mattn/go-isatty v0.0.20 // indirect
2024-03-27 22:43:36 +01:00
github.com/muhlemmer/gu v0.3.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
2024-03-18 21:54:35 +01:00
github.com/tklauser/go-sysconf v0.3.13 // indirect
github.com/tklauser/numcpus v0.7.0 // indirect
2023-06-21 17:19:21 +02:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
2024-03-12 15:49:08 +01:00
github.com/yusufpapurcu/wmi v1.2.4 // indirect
2024-03-27 22:43:36 +01:00
github.com/zitadel/logging v0.5.0 // indirect
github.com/zitadel/schema v1.3.0 // indirect
2024-03-18 21:54:35 +01:00
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 // indirect
golang.org/x/net v0.22.0 // indirect
2024-03-27 22:43:36 +01:00
golang.org/x/oauth2 v0.15.0 // indirect
2024-03-18 21:54:35 +01:00
golang.org/x/sys v0.18.0 // indirect
2024-03-12 15:49:08 +01:00
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
2024-03-27 22:43:36 +01:00
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
2023-06-21 16:49:07 +02:00
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
2023-06-14 21:53:27 +02:00
)