41 lines
1.5 KiB
Modula-2
41 lines
1.5 KiB
Modula-2
module git.janky.solutions/finn/lockserver
|
|
|
|
go 1.21.8
|
|
|
|
require (
|
|
github.com/failsafe-go/failsafe-go v0.6.2
|
|
github.com/getkin/kin-openapi v0.124.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/websocket v1.5.1
|
|
github.com/labstack/echo/v4 v4.11.4
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/oapi-codegen/runtime v1.1.1
|
|
github.com/pressly/goose/v3 v3.19.2
|
|
github.com/sirupsen/logrus v1.9.3
|
|
)
|
|
|
|
require (
|
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.20.2 // indirect
|
|
github.com/go-openapi/swag v0.22.8 // indirect
|
|
github.com/invopop/yaml v0.2.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
|
github.com/perimeterx/marshmallow v1.1.5 // indirect
|
|
github.com/sethvargo/go-retry v0.2.4 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.18.0 // indirect
|
|
golang.org/x/net v0.20.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|