2023-06-16 13:19:10 +02:00
|
|
|
module gitlab.unjx.de/flohoss/godash
|
2023-06-14 21:53:27 +02:00
|
|
|
|
2024-09-16 11:48:33 +02:00
|
|
|
go 1.23
|
2023-06-14 21:53:27 +02:00
|
|
|
|
|
|
|
require (
|
2024-09-10 19:46:16 +02:00
|
|
|
github.com/a-h/templ v0.2.778
|
2024-03-12 15:49:08 +01:00
|
|
|
github.com/caarlos0/env/v10 v10.0.0
|
2024-09-16 06:55:39 +02:00
|
|
|
github.com/coreos/go-oidc/v3 v3.11.0
|
2024-09-10 19:46:16 +02:00
|
|
|
github.com/go-playground/validator/v10 v10.22.1
|
2024-09-25 15:33:28 +02:00
|
|
|
github.com/gorilla/securecookie v1.1.2
|
|
|
|
github.com/gorilla/sessions v1.4.0
|
2024-09-30 12:05:12 +02:00
|
|
|
github.com/lmittmann/tint v1.0.5
|
2023-06-21 16:49:07 +02:00
|
|
|
github.com/r3labs/sse/v2 v2.10.0
|
2024-09-10 19:46:16 +02:00
|
|
|
github.com/shirou/gopsutil/v4 v4.24.8
|
2024-09-16 11:45:24 +02:00
|
|
|
github.com/thanhpk/randstr v1.0.6
|
2024-09-16 06:55:39 +02:00
|
|
|
golang.org/x/oauth2 v0.23.0
|
2023-06-21 17:19:21 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2023-06-14 21:53:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2024-08-22 11:39:16 +02:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
|
|
|
|
github.com/go-jose/go-jose/v4 v4.0.4 // 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
|
2024-04-03 12:17:05 +02:00
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
2024-03-12 15:49:08 +01:00
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2024-09-10 19:46:16 +02:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20240909124753-873cd0166683 // indirect
|
2024-08-22 11:39:16 +02:00
|
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
2024-03-30 00:27:23 +01:00
|
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
2024-06-11 11:27:07 +02:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2024-04-25 17:24:05 +02:00
|
|
|
github.com/tklauser/go-sysconf v0.3.14 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.8.0 // indirect
|
2024-03-12 15:49:08 +01:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
2024-09-10 19:46:16 +02:00
|
|
|
golang.org/x/crypto v0.27.0 // indirect
|
|
|
|
golang.org/x/net v0.29.0 // indirect
|
|
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
|
|
golang.org/x/text v0.18.0 // indirect
|
2023-06-21 16:49:07 +02:00
|
|
|
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
|
2024-06-11 11:27:07 +02:00
|
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
2023-06-14 21:53:27 +02:00
|
|
|
)
|