mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 08:35:43 +00:00
78 lines
3 KiB
Modula-2
78 lines
3 KiB
Modula-2
module github.com/hay-kot/homebox/backend
|
|
|
|
go 1.22
|
|
|
|
toolchain go1.22.0
|
|
|
|
require (
|
|
ariga.io/atlas v0.19.1
|
|
entgo.io/ent v0.12.5
|
|
github.com/ardanlabs/conf/v3 v3.1.7
|
|
github.com/containrrr/shoutrrr v0.8.0
|
|
github.com/go-chi/chi/v5 v5.0.12
|
|
github.com/go-playground/validator/v10 v10.18.0
|
|
github.com/gocarina/gocsv v0.0.0-20231116093920-b87c2d0e983a
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/schema v1.2.1
|
|
github.com/hay-kot/httpkit v0.0.9
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/olahol/melody v1.1.4
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rs/zerolog v1.32.0
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/swaggo/http-swagger/v2 v2.0.2
|
|
github.com/swaggo/swag v1.16.3
|
|
github.com/yeqown/go-qrcode/v2 v2.2.2
|
|
github.com/yeqown/go-qrcode/writer/standard v1.2.4
|
|
golang.org/x/crypto v0.19.0
|
|
modernc.org/sqlite v1.29.2
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fatih/color v1.16.0 // indirect
|
|
github.com/fogleman/gg v1.3.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
|
github.com/go-openapi/inflect v0.19.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.20.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/spec v0.20.9 // indirect
|
|
github.com/go-openapi/swag v0.22.4 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/gorilla/websocket v1.5.1 // indirect
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // 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/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/swaggo/files/v2 v2.0.0 // indirect
|
|
github.com/yeqown/reedsolomon v1.0.0 // indirect
|
|
github.com/zclconf/go-cty v1.14.1 // indirect
|
|
golang.org/x/image v0.14.0 // indirect
|
|
golang.org/x/mod v0.15.0 // indirect
|
|
golang.org/x/net v0.21.0 // indirect
|
|
golang.org/x/sys v0.17.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
golang.org/x/tools v0.17.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
|
|
modernc.org/libc v1.41.0 // indirect
|
|
modernc.org/mathutil v1.6.0 // indirect
|
|
modernc.org/memory v1.7.2 // indirect
|
|
modernc.org/strutil v1.2.0 // indirect
|
|
modernc.org/token v1.1.0 // indirect
|
|
)
|