godash/go.mod

33 lines
1.1 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-04-04 09:25:59 +02:00
go 1.22
2023-06-14 21:53:27 +02:00
require (
2024-05-06 20:38:59 +02:00
github.com/a-h/templ v0.2.680
2024-03-12 15:49:08 +01:00
github.com/caarlos0/env/v10 v10.0.0
2024-05-06 20:38:59 +02:00
github.com/go-playground/validator/v10 v10.20.0
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
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-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
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-03-30 00:27:23 +01:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
2024-05-21 17:33:13 +02:00
github.com/stretchr/testify v1.9.0 // 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-05-06 20:38:59 +02:00
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
2023-06-21 16:49:07 +02:00
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
2024-05-21 17:33:13 +02:00
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
2023-06-14 21:53:27 +02:00
)