SimpleCloudNotifier/scnserver/go.mod

37 lines
1.3 KiB
Modula-2
Raw Normal View History

2022-11-13 19:17:07 +01:00
module blackforestbytes.com/simplecloudnotifier
go 1.19
require (
github.com/gin-gonic/gin v1.8.1
2023-01-15 06:30:30 +01:00
github.com/go-playground/validator/v10 v10.10.0
github.com/go-sql-driver/mysql v1.6.0
2022-12-09 00:13:10 +01:00
github.com/jmoiron/sqlx v1.3.5
2022-11-19 14:57:45 +01:00
github.com/mattn/go-sqlite3 v1.14.16
2022-11-13 19:17:07 +01:00
github.com/rs/zerolog v1.28.0
2023-06-05 13:37:49 +02:00
gogs.mikescher.com/BlackForestBytes/goext v0.0.130
2022-12-23 20:27:21 +01:00
gopkg.in/loremipsum.v1 v1.1.0
2022-11-13 19:17:07 +01:00
)
require (
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/goccy/go-json v0.9.7 // indirect
2022-11-19 14:57:45 +01:00
github.com/google/go-cmp v0.5.9 // indirect
2022-11-13 19:17:07 +01:00
github.com/json-iterator/go v1.1.12 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
github.com/ugorji/go/codec v1.2.7 // indirect
2022-12-23 20:27:21 +01:00
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/net v0.3.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
2022-11-19 14:57:45 +01:00
google.golang.org/protobuf v1.28.1 // indirect
2022-11-13 19:17:07 +01:00
gopkg.in/yaml.v2 v2.4.0 // indirect
)